123456789101112131415161718192021 |
- <?php
- namespace app\model;
- use support\Model;
- class Goods extends Model
- {
- protected $table = 'goods';
- protected $primaryKey = 'goods_id';
- protected $keyType = 'string';
- public $incrementing = false;
- protected $dateFormat = 'U';
- const CREATED_AT = 'goods_addtimes';
- const UPDATED_AT = null;
- }
|