| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace app\model\saas;
- use app\extra\basic\Model;
- /**
- * @property integer $id (主键)
- * @property integer $uuid
- * @property integer $shop_id
- * @property string $name 文件名称
- * @property integer $total_page 总页数
- * @property integer $page 页数
- * @property integer $end_page 结束页
- * @property integer $start_page 起始页
- * @property integer $color 颜色
- * @property string $paper_size 纸张
- * @property integer $duplex 单双面1单面2双面
- * @property integer $direction 1
- * @property integer $number 打印份数
- * @property integer $money 金额
- * @property string $path 文件
- * @property string $old_path 原始路径
- * @property string $extension
- * @property float $discount 折扣
- * @property integer $source 1文档2复印
- * @property integer $extra_money 额外加价
- * @property integer $single_money 单价
- * @property integer $single_id 单价ID
- * @property string $icon
- * @property string $print_name 打印机名称
- * @property string $view_key 预览id
- * @property string $job
- * @property mixed $create_at
- */
- class SaasCart extends Model
- {
- /**
- * The connection name for the model.
- *
- * @var string|null
- */
- protected $connection = 'mysql';
-
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected string $table = "saas_cart";
-
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected string $primaryKey = "id";
-
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public bool $timestamps = false;
- }
|