| 123456789101112131415161718192021222324252627282930 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package plat
- import (
- "dashoo.cn/micro/app/model/plat/internal"
- "dashoo.cn/opms_libary/request"
- )
- // PlatFollowupFile is the golang structure for table plat_followup_file.
- type PlatFollowupFile internal.PlatFollowupFile
- // Fill with you ideas below.
- // 查询
- type SearchPlatFollowupFileReq struct {
- FollowId string `json:"followId"`
- request.PageReq
- }
- // 添加数据
- type AddPlatFollowupFileReq struct {
- //FollowId string `orm:"follow_id" json:"followId" v:"required#关联跟进不能为空"` // 关联跟进
- FileName string `orm:"file_name" json:"fileName" v:"required#文件名不能为空"` // 文件名
- FileType string `orm:"file_type" json:"fileType"` // 文件类型
- FileUrl string `orm:"file_url" json:"fileUrl" v:"required#文件地址不能为空"` // 文件地址
- Remark string `orm:"remark" json:"remark"` // 备注
- }
|