GoodProof.php 530 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\model;
  3. class GoodProof extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'spuCode' =>'varchar',//商品spuCode
  9. 'proof_type' =>'tinyint',//凭证类型
  10. 'proof_url' =>'varchar',//凭证地址
  11. 'creater' =>'varchar',//创建人
  12. 'createrid' =>'int',//创建人id
  13. 'is_del' =>'tinyint',//
  14. 'addtime' =>'datetime',//
  15. 'updatetime' =>'datetime',//
  16. ];
  17. }