| | |
| | | /** 更新时间 */ |
| | | @ApiModelProperty(value = "更新时间", example = "") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("update_time") |
| | | @TableField(value = "update_time",fill = FieldFill.UPDATE) |
| | | private Date updateTime; |
| | | |
| | | /** 更新人 */ |
| | |
| | | @TableField("attachment") |
| | | private String attachment; |
| | | |
| | | /** 最少可选数量 */ |
| | | @ApiModelProperty(value = "最少可选数量", example = "") |
| | | @TableField("option_number_min") |
| | | private Integer optionNumberMin; |
| | | |
| | | } |
| | | |
| | |
| | | <result property="optionNumber" column="option_number" /> |
| | | <result property="mandatoryFlag" column="mandatory_flag" /> |
| | | <result property="attachment" column="attachment" /> |
| | | <result property="optionNumberMin" column="option_number_min" /> |
| | | </resultMap> |
| | | |
| | | |
| | |
| | | <result property="selected" column="selected" /> |
| | | <result property="articleId" column="article_id" /> |
| | | <result property="optionNumber" column="option_number" /> |
| | | <result property="optionNumberMin" column="option_number_min" /> |
| | | <result property="mandatoryFlag" column="mandatory_flag" /> |
| | | <result property="attachment" column="attachment" /> |
| | | <collection property="children" column="id" javaType="list" ofType="org.springblade.modules.discuss.dto.TopicsDTO" select="selectStlCount"> |
| | |
| | | selected, |
| | | article_id, |
| | | option_number, |
| | | option_number_min, |
| | | mandatory_flag, |
| | | attachment |
| | | from |
| | |
| | | jt.article_id, |
| | | jt.LEVEL, |
| | | jt.option_number, |
| | | jt.option_number_min, |
| | | jt.mandatory_flag, |
| | | jt.attachment, |
| | | ( SELECT |
| | |
| | | bu.code, |
| | | bu.user_type, |
| | | bu.account, |
| | | bu.name, |
| | | jh.name, |
| | | bu.real_name, |
| | | bu.avatar, |
| | | bu.email, |