123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- * @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:"projectId" json:"projectId"`
- BidsectionId string `from:"bidsectionId" json:"bidsectionId"`
- DataType int `from:"dataType" json:"dataType"`
- DataId string `from:"dataId" json:"dataId"`
- Status int `from:"status" json:"status"`
- Progress string `from:"progress" json:"progress"`
- AuditOrder int `from:"auditOrder" json:"auditOrder"`
- AuditId string `from:"auditId" json:"auditId"`
- 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"`
- }
- type ApproverMessage struct {
- Id string `from:"id" json:"id"`
- DataType int `from:"dataType" json:"dataType"`
- DataId string `from:"dataId" json:"dataId"`
- Status int `from:"status" json:"status"`
- 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"`
- }
|