| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | <?phpnamespace app\admin\model\unishop;use think\Model;class FlashProduct extends Model{    //数据库    protected $connection = 'database';    // 表名    protected $name = 'unishop_flash_product';    // 自动写入时间戳字段    protected $autoWriteTimestamp = 'int';    // 定义时间戳字段名    protected $createTime = 'createtime';    protected $updateTime = 'updatetime';    protected $deleteTime = false;    // 追加属性    protected $append = [    ];    /**     * 关联到产品     */    public function product()    {        return $this->belongsTo('product', 'product_id', 'id');    }}
 |