ChangeLog.php 557 B

123456789101112131415161718
  1. <?php
  2. namespace app\admin\model;
  3. class ChangeLog extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'type' =>'tinyint',//1供应商2客户3商品成本4单位5规格6品牌7分类8平台
  9. 'code' =>'varchar',//修改编码
  10. 'before_info' =>'text',//修改前字段内容
  11. 'after_info' =>'text',//修改后字段内容
  12. 'creater' =>'varchar',//创建人
  13. 'createrid' =>'int',//创建人id
  14. 'addtime' =>'datetime',//
  15. ];
  16. }