|
@@ -6,20 +6,21 @@ import (
|
|
|
)
|
|
|
|
|
|
type CygxArticleComment struct {
|
|
|
- Id int `orm:"column(id);pk" description:"留言id"`
|
|
|
- UserId int `description:"用户id"`
|
|
|
- RealName string `description:"用户姓名"`
|
|
|
- ArticleId int `description:"文章id"`
|
|
|
- ActivityId int `description:"活动id"`
|
|
|
- VideoId int `description:"视频id"`
|
|
|
- IndustryId int `description:"产业id"`
|
|
|
- CreateTime time.Time `description:"创建时间"`
|
|
|
- Mobile string `description:"手机号"`
|
|
|
- Email string `description:"邮箱"`
|
|
|
- CompanyId int `description:"公司id"`
|
|
|
- CompanyName string `description:"公司名称"`
|
|
|
- Content string `description:"内容"`
|
|
|
- Title string `description:"标题"`
|
|
|
+ Id int `orm:"column(id);pk" description:"留言id"`
|
|
|
+ UserId int `description:"用户id"`
|
|
|
+ RealName string `description:"用户姓名"`
|
|
|
+ ArticleId int `description:"文章id"`
|
|
|
+ ActivityId int `description:"活动id"`
|
|
|
+ VideoId int `description:"视频id"`
|
|
|
+ ActivityVoiceId int `description:"活动音频ID"`
|
|
|
+ IndustryId int `description:"产业id"`
|
|
|
+ CreateTime time.Time `description:"创建时间"`
|
|
|
+ Mobile string `description:"手机号"`
|
|
|
+ Email string `description:"邮箱"`
|
|
|
+ CompanyId int `description:"公司id"`
|
|
|
+ CompanyName string `description:"公司名称"`
|
|
|
+ Content string `description:"内容"`
|
|
|
+ Title string `description:"标题"`
|
|
|
}
|
|
|
|
|
|
//添加留言
|