| 123456789101112131415161718 | <?phpnamespace app\model;use support\Model;class GoodsComponent extends Model{    protected $table = 'goods_component';    protected $primaryKey = 'goods_component_id';    protected $dateFormat = 'U';    const CREATED_AT = 'goods_component_addtimes';    const UPDATED_AT = null;}
 |