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