Workflow.php 819 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\admin\model;
  3. class Workflow extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'order_type' =>'varchar',//订单流程类型
  9. 'order_id' =>'int',//订单id
  10. 'order_code' =>'varchar',//订单编号
  11. 'order_status' =>'varchar',//订单流程操作状态 1未操作,2流程中,3完成
  12. 'order_process' =>'varchar',//流程节点
  13. 'apply_id' =>'bigint',//申请人id
  14. 'apply_name' =>'varchar',//申请人名称
  15. 'action_uid' =>'int',//当前操作人id
  16. 'action_name' =>'varchar',//操作人名称
  17. 'is_del' =>'int',//是否删除
  18. 'addtime' =>'datetime',//
  19. 'updatetime' =>'datetime',//
  20. ];
  21. }