plat_followup_comment.go 1.1 KB

123456789101112131415161718192021222324252627282930
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package plat
  5. import (
  6. "dashoo.cn/micro/app/model/plat/internal"
  7. "dashoo.cn/opms_libary/request"
  8. )
  9. // PlatFollowupComment is the golang structure for table plat_followup_comment.
  10. type PlatFollowupComment internal.PlatFollowupComment
  11. // Fill with you ideas below.
  12. // 查询
  13. type SearchPlatFollowupCommentReq struct {
  14. FollowId string `json:"followId"`
  15. Pid string `json:"pid"`
  16. request.PageReq
  17. }
  18. // 添加数据
  19. type AddPlatFollowupCommentReq struct {
  20. FollowId string `orm:"follow_id" json:"followId" v:"required#关联跟进不能为空"` // 关联跟进
  21. Content string `orm:"content" json:"content"` // 评论内容
  22. Pid int `orm:"pid" json:"pid"` // 回复对象ID
  23. Remark string `orm:"remark" json:"remark"` // 备注
  24. }