version.go 376 B

1234567891011121314
  1. /*
  2. * @description:
  3. * @Author: CP
  4. * @Date: 2021-02-02 11:20:56
  5. * @FilePath: \construction_management\web\viewmodels\version.go
  6. */
  7. package viewmodels
  8. type Version struct {
  9. Id string `form:"id" json:"id" `
  10. Name string `form:"name" json:"name" `
  11. CreateTime string `form:"createTime" json:"createTime" `
  12. Content string `form:"content" json:"content" `
  13. }