GoodChange.php 497 B

123456789101112131415161718
  1. <?php
  2. namespace app\cxinv\model;
  3. class GoodChange extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'spuCode' =>'varchar',//商品编号
  9. 'good_name' =>'varchar',//商品名称
  10. 'before' =>'varchar',//修改前
  11. 'after' =>'varchar',//修改后
  12. 'exam_status' =>'tinyint',//审核状态 1采购,2销售
  13. 'apply_id' =>'int',//
  14. 'apply_name' =>'varchar',//
  15. 'addtime' =>'datetime',//
  16. ];
  17. }