GoodPlatform.php 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace app\youzan\model;
  3. use think\Model;
  4. //商品上线平台表
  5. class GoodPlatform extends Model
  6. {
  7. protected $table = 'wsm_good_platform';
  8. protected $pk = 'id';
  9. protected $autoWriteTimestamp = false;
  10. public static $del_normal = 0;//未删除
  11. public static $deleted = 1;//已删除
  12. public static $exam_status_0 = 0;//待提交
  13. public static $exam_status_1 = 1;//待完善成本
  14. public static $exam_status_2 = 2;//待产品审核
  15. public static $exam_status_3 = 3;//待财务定价
  16. public static $exam_status_4 = 4;//待财务审核定价
  17. public static $exam_status_5 = 5;//待上线
  18. public static $exam_status_6 = 6;//上线成功
  19. public static $exam_status_7 = 7;//审核失败
  20. public static $exam_status_8 = 8;//已下线
  21. public static $status_online_ing = 1;//有赞待上线(处理中)
  22. public static $status_online_success = 2;//有赞上线成功
  23. public static $status_online_fail = 3;//有赞上线失败
  24. public static $status_offline = 4;//有赞已下线
  25. }