You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
973 B
57 lines
973 B
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace App\Model;
|
|
|
|
/**
|
|
*/
|
|
class Store extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'ims_cjdc_store';
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'market_id',
|
|
'md_type',
|
|
'address',
|
|
'coordinates',
|
|
'details',
|
|
'link_name',
|
|
'link_tel',
|
|
'logo',
|
|
'fm_img',
|
|
'zm_img',
|
|
'yyzz',
|
|
'user_id',
|
|
'sq_id',
|
|
'admin_id',
|
|
'rz_time',
|
|
'mm_user_id',
|
|
'sq_time',
|
|
'rzdq_time',
|
|
'state',
|
|
'is_open',
|
|
'money',
|
|
'code',
|
|
'uniacid',
|
|
'zf_state',
|
|
];
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [];
|
|
|
|
public $timestamps=false;
|
|
|
|
}
|