1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * @description:审批流程相关
- * @Author: LanJianRong
- * @Date: 2021-01-07 16:00:19
- * @FilePath: \construction_management\web\viewmodels\approver.go
- */
- package viewmodels
- import "time"
- 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"`
- Inspection string `from:"inspection" json:"inspection"`
- InspectionDetail string `from:"inspectionDetail" json:"inspectionDetail"`
- BidsectionName string `from:"bidsectionName" json:"bidsectionName"`
- Name string `from:"name" json:"name"`
- Position string `from:"position" json:"position"`
- CreateTime string `form:"createTime" json:"createTime"`
- UpdateTime time.Time `form:"updateTime" json:"updateTime"`
- }
|