|
@@ -6,6 +6,8 @@
|
|
|
*/
|
|
|
package viewmodels
|
|
|
|
|
|
+import "time"
|
|
|
+
|
|
|
type Approver struct {
|
|
|
Id string `from:"id" json:"id"`
|
|
|
ProjectId string `from:"projectId" json:"projectId"`
|
|
@@ -31,11 +33,12 @@ type ApproverMessage struct {
|
|
|
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"`
|
|
|
+ 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"`
|
|
|
}
|