赛思维服务调研
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
1.5 KiB

  1. package models
  2. type CSurveysheetOptionlst struct {
  3. Cid int `json:"cid" xorm:"not null pk INT(11)"`
  4. Cnr int `json:"cnr" xorm:"not null pk comment('小区ID') INT(11)"`
  5. Surveysheetid string `json:"surveysheetid" xorm:"not null pk VARCHAR(40)"`
  6. Subjectid string `json:"subjectid" xorm:"not null pk comment('问题ID') VARCHAR(20)"`
  7. Optionid string `json:"optionid" xorm:"not null pk comment('选项ID:A / B / C / D...') VARCHAR(1)"`
  8. Optiontext string `json:"optiontext" xorm:"default 'NULL' comment('选项内容') VARCHAR(255)"`
  9. Optionpicture string `json:"optionpicture" xorm:"default 'NULL' comment('选项图片') VARCHAR(255)"`
  10. Optionvideo string `json:"optionvideo" xorm:"default 'NULL' comment('选项视频') VARCHAR(255)"`
  11. Optionvalue int `json:"optionvalue" xorm:"default NULL comment('选项值') INT(11)"`
  12. Optionfactor int `json:"optionfactor" xorm:"default NULL comment('选项因子') INT(11)"`
  13. Optiontype int `json:"optiontype" xorm:"default NULL comment('选项类型') INT(11)"`
  14. Optioninput string `json:"optioninput" xorm:"default 'NULL' comment('选项输入') VARCHAR(255)"`
  15. Createtime string `json:"createtime" xorm:"default 'NULL' comment('创建时间') VARCHAR(40)"`
  16. Lastmodifytime string `json:"lastmodifytime" xorm:"default 'NULL' comment('最近更新时间') VARCHAR(40)"`
  17. Lastmodifyby string `json:"lastmodifyby" xorm:"default 'NULL' comment('修改人员') VARCHAR(40)"`
  18. }