12345678910111213141516171819 |
- <?php
- namespace app\admin\model;
- class GoodProof extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'spuCode' =>'varchar',//商品spuCode
- 'proof_type' =>'tinyint',//凭证类型
- 'proof_url' =>'varchar',//凭证地址
- 'creater' =>'varchar',//创建人
- 'createrid' =>'int',//创建人id
- 'is_del' =>'tinyint',//
- 'addtime' =>'datetime',//
- 'updatetime' =>'datetime',//
- ];
- }
|