Promocode.php 540 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\youzan\model;
  3. class Promocode extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'kdt_id' =>'bigint',//
  9. 'activity_type' =>'bigint',//
  10. 'alias' =>'varchar',//
  11. 'description' =>'varchar',//
  12. 'title' =>'varchar',//
  13. 'remark' =>'varchar',//
  14. 'start_time' =>'datetime',//
  15. 'end_time' =>'datetime',//
  16. 'created_at' =>'datetime',//
  17. 'status' =>'tinyint',//
  18. 'is_deleted' =>'tinyint',//
  19. ];
  20. }