| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace app\model\saas;
- use app\extra\basic\Model;
- /**
- * @property integer $id (主键)
- * @property integer $store_id 来客账户id
- * @property integer $agent_id 代理id
- * @property integer $product_id
- * @property string $product_name
- * @property string $express_name 面单打印名称
- * @property string $product_img
- * @property integer $product_price
- * @property integer $product_orgin 划线价
- * @property integer $out_id 来客商品ID
- * @property integer $status
- * @property mixed $create_at
- */
- class SaasGoods 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_goods";
-
- /**
- * 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;
- }
|