| 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"
- )
- // PlatFollowupComment is the golang structure for table plat_followup_comment.
- type PlatFollowupComment internal.PlatFollowupComment
- // Fill with you ideas below.
- // 查询
- type SearchPlatFollowupCommentReq struct {
- FollowId string `json:"followId"`
- Pid string `json:"pid"`
- request.PageReq
- }
- // 添加数据
- type AddPlatFollowupCommentReq struct {
- FollowId string `orm:"follow_id" json:"followId" v:"required#关联跟进不能为空"` // 关联跟进
- Content string `orm:"content" json:"content"` // 评论内容
- Pid int `orm:"pid" json:"pid"` // 回复对象ID
- Remark string `orm:"remark" json:"remark"` // 备注
- }
|