tree_section_contract.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * @description:合同项目节-视图层
  3. * @Author: CP
  4. * @Date: 2020-11-02 15:18:59
  5. * @FilePath: \construction_management\web\viewmodels\tree_section_contract.go
  6. */
  7. package viewmodels
  8. type TreeSectionContract struct {
  9. Id string `form:"id" json:"id" `
  10. ParentId string `form:"parentId" json:"parentId"`
  11. Name string `form:"name" json:"name"`
  12. Depth int `form:"depth" json:"depth"`
  13. Serial string `form:"serial" json:"serial"`
  14. Attribution string `form:"attribution" json:"attribution"`
  15. Sort int `form:"sort" json:"attribsortution"`
  16. ProjectId string `form:"projectId" json:"projectId"`
  17. ContractId string `form:"contractId" json:"contractId"`
  18. ContractName string `form:"contractName" json:"contractName"`
  19. ContractCode string `form:"contractCode" json:"contractCode"`
  20. ContractPrice string `form:"contractPrice" json:"contractPrice"`
  21. ContractReturned string `form:"contractReturned" json:"contractReturned"`
  22. ContractsPaid string `form:"contractsPaid" json:"contractsPaid"`
  23. ContractStatus int `form:"contractStatus" json:"contractStatus"`
  24. CreateTime string `form:"createTime" json:"createTime"`
  25. Children []*TreeSectionContract `json:"children"`
  26. TemplateNumber int `form:"templateNumber" json:"templateNumber"`
  27. }
  28. // Isfolder int `form:"isfolder" json:"isfolder"`
  29. // UpdateTime string `form:"updateTime" json:"updateTime"`
  30. // TargetFolderId string `form:"targetFolderId" json:"targetFolderId"`
  31. // Ancounts int `form:"ancounts" json:"ancounts"`
  32. // Csrf string `form:"csrf" json:"csrf"`
  33. // // Leaf bool `json:"leaf" `
  34. // HasFolder bool `json:"hasFolder" `
  35. // IsBid bool `json:"isBid" `
  36. // IsEnd bool `json:"isEnd"`
  37. // ChildsTotal int `json:"childsTotal"`