1234567891011121314151617181920212223 |
- <?php
- namespace app\admin\model;
- class Workflow extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'order_type' =>'varchar',
- 'order_id' =>'int',
- 'order_code' =>'varchar',
- 'order_status' =>'varchar',
- 'order_process' =>'varchar',
- 'apply_id' =>'bigint',
- 'apply_name' =>'varchar',
- 'action_uid' =>'int',
- 'action_name' =>'varchar',
- 'is_del' =>'int',
- 'addtime' =>'datetime',
- 'updatetime' =>'datetime',
- ];
- }
|