1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\cxinv\model;
- class ActionProcess extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'order_type' =>'varchar',
- 'order_name' =>'varchar',
- 'process_id' =>'int',
- 'order_process' =>'int',
- 'status_name' =>'varchar',
- 'pid' =>'int',
- 'roleid' =>'varchar',
- 'action_type' =>'tinyint',
- 'operation_type' =>'tinyint',
- 'next_action_ids' =>'varchar',
- 'uid' =>'int',
- 'uname' =>'varchar',
- 'status' =>'int',
- 'weight' =>'int',
- 'is_del' =>'int',
- 'createrid' =>'int',
- 'creater' =>'varchar',
- 'addtime' =>'datetime',
- 'updaterid' =>'int',
- 'updater' =>'varchar',
- 'updatetime' =>'datetime',
- 'remark' =>'varchar',
- ];
- }
|