1234567891011121314151617181920 |
- /*
- * @description:审批流程相关
- * @Author: LanJianRong
- * @Date: 2021-01-07 16:00:19
- * @FilePath: \construction_management\web\viewmodels\approver.go
- */
- package viewmodels
- type Approver struct {
- Id string `from:"id" json:"json`
- ProjectId string `from:"project_id" json:"project_id"`
- BidsectionId string `from:"bidsection_id" json:"bidsection_id"`
- DataType int `from:"data_type" json:"data_type"`
- DataId string `from:"data_id" json:"data_id"`
- Status int `from:"status" json:"status"`
- Progress int `from:"progress" json:"progress"`
- Times int `from:"times" json:"times"`
- AuditOrder int `from:"audit_order" json:"audit_order"`
- AuditId string `from:"audit_id" json:"audit_id"`
- }
|