| 12345678910111213141516171819202122232425 |
- /*
- * @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:"id"`
- 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 string `from:"progress" json:"progress"`
- AuditOrder int `from:"audit_order" json:"audit_order"`
- AuditId string `from:"audit_id" json:"audit_id"`
- Code string `from:"code" json:"code"`
- InspectionDetail string `from:"inspectionDetail" json:"inspectionDetail"`
- Name string `from:"name" json:"name"`
- Position string `from:"position" json:"position"`
- CreateTime string `form:"createTime" json:"createTime"`
- }
|