proj_business_file.go 1.0 KB

1234567891011121314151617181920212223
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package model
  5. import (
  6. "dashoo.cn/micro/app/model/proj/internal"
  7. )
  8. // ProjBusinessFile is the golang structure for table proj_business_file.
  9. type ProjBusinessFile internal.ProjBusinessFile
  10. // Fill with you ideas below.
  11. type ProjBusinessFileReq struct {
  12. BusId int `json:"busId" v:"required# 关联项目不能为空"` // 关联项目
  13. FileName string `json:"fileName" v:"required# 附件名称不能为空"` // 附件名称
  14. FileSize string `json:"fileSize" v:"required# 附件大小不能为空"` // 附件大小
  15. FileSource string `json:"fileSource" v:"required# 附件来源不能为空"` // 附件来源
  16. FileUrl string `json:"fileUrl" v:"required# 附件链接不能为空"` // 附件链接
  17. Remark string `json:"remark"` // 备注
  18. }