23 changed files with 2021 additions and 195 deletions
@ -0,0 +1,50 @@ |
|||
package com.ccsens.ht.api; |
|||
|
|||
import com.alibaba.fastjson.JSONObject; |
|||
import com.ccsens.cloudutil.annotation.MustLogin; |
|||
import com.ccsens.util.RestTemplateUtil; |
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiImplicitParam; |
|||
import io.swagger.annotations.ApiImplicitParams; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.web.bind.annotation.PathVariable; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RequestMethod; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
import sun.misc.BASE64Decoder; |
|||
|
|||
import javax.servlet.ServletResponse; |
|||
import javax.servlet.http.HttpServletResponse; |
|||
import java.io.*; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: whj |
|||
* @time: 2021/6/22 8:56 |
|||
*/ |
|||
@Slf4j |
|||
@Api(tags = "百度相关",value = "百度相关") |
|||
@RestController |
|||
public class BaiDuController { |
|||
|
|||
|
|||
@ApiOperation(value = "合成语音",notes = "合成语音") |
|||
@RequestMapping(value = "/yuyin", method = RequestMethod.GET) |
|||
public void yuyin(String text, HttpServletResponse response) throws IOException { |
|||
try { |
|||
response.setHeader("content-disposition", "attachment;fileName=yuyin.mp3"); |
|||
String result = RestTemplateUtil.postUrlEncode("https://cloud.baidu.com/aidemo?type=tns&per=4119&spd=1&pit=5&vol=5&aue=6&tex=" + text, new JSONObject()); |
|||
JSONObject jsonObject = JSONObject.parseObject(result); |
|||
String data = jsonObject.getString("data").replace("data:audio/x-mpeg;base64,", ""); |
|||
log.info("data:{}",data); |
|||
byte[] buffer = new BASE64Decoder().decodeBuffer(data); |
|||
OutputStream out = response.getOutputStream(); |
|||
out.write(buffer); |
|||
out.close(); |
|||
}catch (Exception e) { |
|||
e.printStackTrace(); |
|||
} |
|||
} |
|||
|
|||
} |
@ -0,0 +1,40 @@ |
|||
package com.ccsens.ht.bean.dto.message; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.lang.reflect.ParameterizedType; |
|||
|
|||
|
|||
/** |
|||
* @description: |
|||
* @author: whj |
|||
* @time: 2021/6/15 9:17 |
|||
*/ |
|||
@Data |
|||
public class MessageDto<T> { |
|||
private String type; |
|||
private String event; |
|||
private T data; |
|||
|
|||
public void setData(T data) { |
|||
this.data = data; |
|||
if (data != null) { |
|||
this.type = data.getClass().getSimpleName(); |
|||
} |
|||
} |
|||
|
|||
@ApiModel("通知跳转到指定题目") |
|||
@Data |
|||
public static final class QuestionInform{ |
|||
@ApiModelProperty("taskId") |
|||
private Long taskId; |
|||
@ApiModelProperty("提醒文案") |
|||
private String content; |
|||
@ApiModelProperty("量表") |
|||
private String code; |
|||
@ApiModelProperty("序号") |
|||
private byte sort; |
|||
} |
|||
} |
@ -0,0 +1,128 @@ |
|||
package com.ccsens.ht.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class HtQuestionShow implements Serializable { |
|||
private Long id; |
|||
|
|||
private Long questionId; |
|||
|
|||
private Byte showType; |
|||
|
|||
private Byte showNode; |
|||
|
|||
private String param; |
|||
|
|||
private Byte sort; |
|||
|
|||
private String remark; |
|||
|
|||
private Date createTime; |
|||
|
|||
private Date updateTime; |
|||
|
|||
private Byte isDel; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Long getQuestionId() { |
|||
return questionId; |
|||
} |
|||
|
|||
public void setQuestionId(Long questionId) { |
|||
this.questionId = questionId; |
|||
} |
|||
|
|||
public Byte getShowType() { |
|||
return showType; |
|||
} |
|||
|
|||
public void setShowType(Byte showType) { |
|||
this.showType = showType; |
|||
} |
|||
|
|||
public Byte getShowNode() { |
|||
return showNode; |
|||
} |
|||
|
|||
public void setShowNode(Byte showNode) { |
|||
this.showNode = showNode; |
|||
} |
|||
|
|||
public String getParam() { |
|||
return param; |
|||
} |
|||
|
|||
public void setParam(String param) { |
|||
this.param = param == null ? null : param.trim(); |
|||
} |
|||
|
|||
public Byte getSort() { |
|||
return sort; |
|||
} |
|||
|
|||
public void setSort(Byte sort) { |
|||
this.sort = sort; |
|||
} |
|||
|
|||
public String getRemark() { |
|||
return remark; |
|||
} |
|||
|
|||
public void setRemark(String remark) { |
|||
this.remark = remark == null ? null : remark.trim(); |
|||
} |
|||
|
|||
public Date getCreateTime() { |
|||
return createTime; |
|||
} |
|||
|
|||
public void setCreateTime(Date createTime) { |
|||
this.createTime = createTime; |
|||
} |
|||
|
|||
public Date getUpdateTime() { |
|||
return updateTime; |
|||
} |
|||
|
|||
public void setUpdateTime(Date updateTime) { |
|||
this.updateTime = updateTime; |
|||
} |
|||
|
|||
public Byte getIsDel() { |
|||
return isDel; |
|||
} |
|||
|
|||
public void setIsDel(Byte isDel) { |
|||
this.isDel = isDel; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", questionId=").append(questionId); |
|||
sb.append(", showType=").append(showType); |
|||
sb.append(", showNode=").append(showNode); |
|||
sb.append(", param=").append(param); |
|||
sb.append(", sort=").append(sort); |
|||
sb.append(", remark=").append(remark); |
|||
sb.append(", createTime=").append(createTime); |
|||
sb.append(", updateTime=").append(updateTime); |
|||
sb.append(", isDel=").append(isDel); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,821 @@ |
|||
package com.ccsens.ht.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class HtQuestionShowExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public HtQuestionShowExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdIsNull() { |
|||
addCriterion("question_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdIsNotNull() { |
|||
addCriterion("question_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdEqualTo(Long value) { |
|||
addCriterion("question_id =", value, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdNotEqualTo(Long value) { |
|||
addCriterion("question_id <>", value, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdGreaterThan(Long value) { |
|||
addCriterion("question_id >", value, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("question_id >=", value, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdLessThan(Long value) { |
|||
addCriterion("question_id <", value, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("question_id <=", value, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdIn(List<Long> values) { |
|||
addCriterion("question_id in", values, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdNotIn(List<Long> values) { |
|||
addCriterion("question_id not in", values, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdBetween(Long value1, Long value2) { |
|||
addCriterion("question_id between", value1, value2, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andQuestionIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("question_id not between", value1, value2, "questionId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeIsNull() { |
|||
addCriterion("show_type is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeIsNotNull() { |
|||
addCriterion("show_type is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeEqualTo(Byte value) { |
|||
addCriterion("show_type =", value, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeNotEqualTo(Byte value) { |
|||
addCriterion("show_type <>", value, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeGreaterThan(Byte value) { |
|||
addCriterion("show_type >", value, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("show_type >=", value, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeLessThan(Byte value) { |
|||
addCriterion("show_type <", value, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeLessThanOrEqualTo(Byte value) { |
|||
addCriterion("show_type <=", value, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeIn(List<Byte> values) { |
|||
addCriterion("show_type in", values, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeNotIn(List<Byte> values) { |
|||
addCriterion("show_type not in", values, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeBetween(Byte value1, Byte value2) { |
|||
addCriterion("show_type between", value1, value2, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowTypeNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("show_type not between", value1, value2, "showType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeIsNull() { |
|||
addCriterion("show_node is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeIsNotNull() { |
|||
addCriterion("show_node is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeEqualTo(Byte value) { |
|||
addCriterion("show_node =", value, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeNotEqualTo(Byte value) { |
|||
addCriterion("show_node <>", value, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeGreaterThan(Byte value) { |
|||
addCriterion("show_node >", value, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("show_node >=", value, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeLessThan(Byte value) { |
|||
addCriterion("show_node <", value, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeLessThanOrEqualTo(Byte value) { |
|||
addCriterion("show_node <=", value, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeIn(List<Byte> values) { |
|||
addCriterion("show_node in", values, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeNotIn(List<Byte> values) { |
|||
addCriterion("show_node not in", values, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeBetween(Byte value1, Byte value2) { |
|||
addCriterion("show_node between", value1, value2, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andShowNodeNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("show_node not between", value1, value2, "showNode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamIsNull() { |
|||
addCriterion("param is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamIsNotNull() { |
|||
addCriterion("param is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamEqualTo(String value) { |
|||
addCriterion("param =", value, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamNotEqualTo(String value) { |
|||
addCriterion("param <>", value, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamGreaterThan(String value) { |
|||
addCriterion("param >", value, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamGreaterThanOrEqualTo(String value) { |
|||
addCriterion("param >=", value, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamLessThan(String value) { |
|||
addCriterion("param <", value, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamLessThanOrEqualTo(String value) { |
|||
addCriterion("param <=", value, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamLike(String value) { |
|||
addCriterion("param like", value, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamNotLike(String value) { |
|||
addCriterion("param not like", value, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamIn(List<String> values) { |
|||
addCriterion("param in", values, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamNotIn(List<String> values) { |
|||
addCriterion("param not in", values, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamBetween(String value1, String value2) { |
|||
addCriterion("param between", value1, value2, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andParamNotBetween(String value1, String value2) { |
|||
addCriterion("param not between", value1, value2, "param"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortIsNull() { |
|||
addCriterion("sort is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortIsNotNull() { |
|||
addCriterion("sort is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortEqualTo(Byte value) { |
|||
addCriterion("sort =", value, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortNotEqualTo(Byte value) { |
|||
addCriterion("sort <>", value, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortGreaterThan(Byte value) { |
|||
addCriterion("sort >", value, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("sort >=", value, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortLessThan(Byte value) { |
|||
addCriterion("sort <", value, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortLessThanOrEqualTo(Byte value) { |
|||
addCriterion("sort <=", value, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortIn(List<Byte> values) { |
|||
addCriterion("sort in", values, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortNotIn(List<Byte> values) { |
|||
addCriterion("sort not in", values, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortBetween(Byte value1, Byte value2) { |
|||
addCriterion("sort between", value1, value2, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSortNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("sort not between", value1, value2, "sort"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkIsNull() { |
|||
addCriterion("remark is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkIsNotNull() { |
|||
addCriterion("remark is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkEqualTo(String value) { |
|||
addCriterion("remark =", value, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkNotEqualTo(String value) { |
|||
addCriterion("remark <>", value, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkGreaterThan(String value) { |
|||
addCriterion("remark >", value, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkGreaterThanOrEqualTo(String value) { |
|||
addCriterion("remark >=", value, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkLessThan(String value) { |
|||
addCriterion("remark <", value, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkLessThanOrEqualTo(String value) { |
|||
addCriterion("remark <=", value, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkLike(String value) { |
|||
addCriterion("remark like", value, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkNotLike(String value) { |
|||
addCriterion("remark not like", value, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkIn(List<String> values) { |
|||
addCriterion("remark in", values, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkNotIn(List<String> values) { |
|||
addCriterion("remark not in", values, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkBetween(String value1, String value2) { |
|||
addCriterion("remark between", value1, value2, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRemarkNotBetween(String value1, String value2) { |
|||
addCriterion("remark not between", value1, value2, "remark"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeIsNull() { |
|||
addCriterion("create_time is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeIsNotNull() { |
|||
addCriterion("create_time is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeEqualTo(Date value) { |
|||
addCriterion("create_time =", value, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeNotEqualTo(Date value) { |
|||
addCriterion("create_time <>", value, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeGreaterThan(Date value) { |
|||
addCriterion("create_time >", value, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("create_time >=", value, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeLessThan(Date value) { |
|||
addCriterion("create_time <", value, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeLessThanOrEqualTo(Date value) { |
|||
addCriterion("create_time <=", value, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeIn(List<Date> values) { |
|||
addCriterion("create_time in", values, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeNotIn(List<Date> values) { |
|||
addCriterion("create_time not in", values, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeBetween(Date value1, Date value2) { |
|||
addCriterion("create_time between", value1, value2, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreateTimeNotBetween(Date value1, Date value2) { |
|||
addCriterion("create_time not between", value1, value2, "createTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeIsNull() { |
|||
addCriterion("update_time is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeIsNotNull() { |
|||
addCriterion("update_time is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeEqualTo(Date value) { |
|||
addCriterion("update_time =", value, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeNotEqualTo(Date value) { |
|||
addCriterion("update_time <>", value, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeGreaterThan(Date value) { |
|||
addCriterion("update_time >", value, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("update_time >=", value, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeLessThan(Date value) { |
|||
addCriterion("update_time <", value, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeLessThanOrEqualTo(Date value) { |
|||
addCriterion("update_time <=", value, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeIn(List<Date> values) { |
|||
addCriterion("update_time in", values, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeNotIn(List<Date> values) { |
|||
addCriterion("update_time not in", values, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeBetween(Date value1, Date value2) { |
|||
addCriterion("update_time between", value1, value2, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdateTimeNotBetween(Date value1, Date value2) { |
|||
addCriterion("update_time not between", value1, value2, "updateTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelIsNull() { |
|||
addCriterion("is_del is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelIsNotNull() { |
|||
addCriterion("is_del is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelEqualTo(Byte value) { |
|||
addCriterion("is_del =", value, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelNotEqualTo(Byte value) { |
|||
addCriterion("is_del <>", value, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelGreaterThan(Byte value) { |
|||
addCriterion("is_del >", value, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("is_del >=", value, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelLessThan(Byte value) { |
|||
addCriterion("is_del <", value, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelLessThanOrEqualTo(Byte value) { |
|||
addCriterion("is_del <=", value, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelIn(List<Byte> values) { |
|||
addCriterion("is_del in", values, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelNotIn(List<Byte> values) { |
|||
addCriterion("is_del not in", values, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelBetween(Byte value1, Byte value2) { |
|||
addCriterion("is_del between", value1, value2, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDelNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("is_del not between", value1, value2, "isDel"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,83 @@ |
|||
package com.ccsens.ht.bean.vo; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: whj |
|||
* @time: 2021/6/10 16:29 |
|||
*/ |
|||
public class QuestionShowVo { |
|||
|
|||
@Data |
|||
@ApiModel("显示信息") |
|||
public static class Show{ |
|||
@ApiModelProperty("类型 0:倒计时 1:限制选项数量 2:不是选中指定选项执行操作 3:显示内容") |
|||
private byte showType; |
|||
} |
|||
|
|||
|
|||
@EqualsAndHashCode(callSuper = true) |
|||
@Data |
|||
@ApiModel("选项限制") |
|||
public static class OptionLimit extends Show{ |
|||
@ApiModelProperty("限制类型 0:限制数量") |
|||
private byte type; |
|||
@ApiModelProperty("属性") |
|||
private String name; |
|||
@ApiModelProperty("最大") |
|||
private byte max; |
|||
@ApiModelProperty("最小") |
|||
private byte min; |
|||
} |
|||
|
|||
@EqualsAndHashCode(callSuper = true) |
|||
@Data |
|||
@ApiModel("特殊指定-返回") |
|||
public static class OptionSpecial extends Show{ |
|||
@ApiModelProperty("限制类型 0:选中选项数量达到最大后,内容非指定选项,则显示对应信息") |
|||
private byte type; |
|||
@ApiModelProperty("选项ID") |
|||
private List<Long> optionIds = new ArrayList<>(); |
|||
@ApiModelProperty("选项序号") |
|||
private List<Byte> optionNums; |
|||
@ApiModelProperty("显示类型 0:图片") |
|||
private byte show; |
|||
@ApiModelProperty("内容") |
|||
private String content; |
|||
} |
|||
|
|||
@EqualsAndHashCode(callSuper = true) |
|||
@Data |
|||
@ApiModel("题目内容补充") |
|||
public static class QuestionSupplement extends Show{ |
|||
@ApiModelProperty("类型 0:图片") |
|||
private byte type; |
|||
@ApiModelProperty("内容") |
|||
private String content; |
|||
} |
|||
|
|||
@ApiModel("倒计时配置") |
|||
@Data |
|||
public static class MesTimer { |
|||
|
|||
@ApiModelProperty("限制类型 0:跳转指定题目") |
|||
private byte type; |
|||
@ApiModelProperty("taskId") |
|||
private Long taskId; |
|||
@ApiModelProperty("提醒文案") |
|||
private String content; |
|||
@ApiModelProperty("量表") |
|||
private String code; |
|||
@ApiModelProperty("序号") |
|||
private byte sort; |
|||
@ApiModelProperty("时长") |
|||
private int time; |
|||
} |
|||
} |
@ -0,0 +1,17 @@ |
|||
package com.ccsens.ht.persist.dao; |
|||
|
|||
import com.ccsens.ht.bean.po.HtQuestionShow; |
|||
import com.ccsens.ht.persist.mapper.HtQuestionShowMapper; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author whj |
|||
*/ |
|||
public interface HtQuestionShowDao extends HtQuestionShowMapper { |
|||
/** |
|||
* 批量添加题目显示 |
|||
* @param showList |
|||
*/ |
|||
void insertBatch(List<HtQuestionShow> showList); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.ht.persist.mapper; |
|||
|
|||
import com.ccsens.ht.bean.po.HtQuestionShow; |
|||
import com.ccsens.ht.bean.po.HtQuestionShowExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface HtQuestionShowMapper { |
|||
long countByExample(HtQuestionShowExample example); |
|||
|
|||
int deleteByExample(HtQuestionShowExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(HtQuestionShow record); |
|||
|
|||
int insertSelective(HtQuestionShow record); |
|||
|
|||
List<HtQuestionShow> selectByExample(HtQuestionShowExample example); |
|||
|
|||
HtQuestionShow selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") HtQuestionShow record, @Param("example") HtQuestionShowExample example); |
|||
|
|||
int updateByExample(@Param("record") HtQuestionShow record, @Param("example") HtQuestionShowExample example); |
|||
|
|||
int updateByPrimaryKeySelective(HtQuestionShow record); |
|||
|
|||
int updateByPrimaryKey(HtQuestionShow record); |
|||
} |
@ -1,5 +1,5 @@ |
|||
spring: |
|||
profiles: |
|||
active: prod |
|||
include: common, util-prod |
|||
active: test |
|||
include: common, util-test |
|||
|
|||
|
@ -0,0 +1,13 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.ht.persist.dao.HtQuestionShowDao"> |
|||
|
|||
<insert id="insertBatch"> |
|||
replace into t_ht_question_show(id, question_id,show_type,show_node,param, sort, remark) values |
|||
<foreach collection="list" item="show" separator=","> |
|||
( |
|||
#{show.id},#{show.questionId},#{show.showType},#{show.showNode},#{show.param},#{show.sort},#{show.remark} |
|||
) |
|||
</foreach> |
|||
</insert> |
|||
</mapper> |
@ -0,0 +1,291 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.ht.persist.mapper.HtQuestionShowMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.ht.bean.po.HtQuestionShow"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="question_id" jdbcType="BIGINT" property="questionId" /> |
|||
<result column="show_type" jdbcType="TINYINT" property="showType" /> |
|||
<result column="show_node" jdbcType="TINYINT" property="showNode" /> |
|||
<result column="param" jdbcType="VARCHAR" property="param" /> |
|||
<result column="sort" jdbcType="TINYINT" property="sort" /> |
|||
<result column="remark" jdbcType="VARCHAR" property="remark" /> |
|||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> |
|||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" /> |
|||
<result column="is_del" jdbcType="TINYINT" property="isDel" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, question_id, show_type, show_node, param, sort, remark, create_time, update_time, |
|||
is_del |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.ht.bean.po.HtQuestionShowExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_ht_question_show |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_ht_question_show |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_ht_question_show |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.ht.bean.po.HtQuestionShowExample"> |
|||
delete from t_ht_question_show |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.ht.bean.po.HtQuestionShow"> |
|||
insert into t_ht_question_show (id, question_id, show_type, |
|||
show_node, param, sort, |
|||
remark, create_time, update_time, |
|||
is_del) |
|||
values (#{id,jdbcType=BIGINT}, #{questionId,jdbcType=BIGINT}, #{showType,jdbcType=TINYINT}, |
|||
#{showNode,jdbcType=TINYINT}, #{param,jdbcType=VARCHAR}, #{sort,jdbcType=TINYINT}, |
|||
#{remark,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, |
|||
#{isDel,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.ht.bean.po.HtQuestionShow"> |
|||
insert into t_ht_question_show |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="questionId != null"> |
|||
question_id, |
|||
</if> |
|||
<if test="showType != null"> |
|||
show_type, |
|||
</if> |
|||
<if test="showNode != null"> |
|||
show_node, |
|||
</if> |
|||
<if test="param != null"> |
|||
param, |
|||
</if> |
|||
<if test="sort != null"> |
|||
sort, |
|||
</if> |
|||
<if test="remark != null"> |
|||
remark, |
|||
</if> |
|||
<if test="createTime != null"> |
|||
create_time, |
|||
</if> |
|||
<if test="updateTime != null"> |
|||
update_time, |
|||
</if> |
|||
<if test="isDel != null"> |
|||
is_del, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="questionId != null"> |
|||
#{questionId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="showType != null"> |
|||
#{showType,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="showNode != null"> |
|||
#{showNode,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="param != null"> |
|||
#{param,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="sort != null"> |
|||
#{sort,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="remark != null"> |
|||
#{remark,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="createTime != null"> |
|||
#{createTime,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updateTime != null"> |
|||
#{updateTime,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="isDel != null"> |
|||
#{isDel,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.ht.bean.po.HtQuestionShowExample" resultType="java.lang.Long"> |
|||
select count(*) from t_ht_question_show |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_ht_question_show |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.questionId != null"> |
|||
question_id = #{record.questionId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.showType != null"> |
|||
show_type = #{record.showType,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.showNode != null"> |
|||
show_node = #{record.showNode,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.param != null"> |
|||
param = #{record.param,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.sort != null"> |
|||
sort = #{record.sort,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.remark != null"> |
|||
remark = #{record.remark,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.createTime != null"> |
|||
create_time = #{record.createTime,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updateTime != null"> |
|||
update_time = #{record.updateTime,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.isDel != null"> |
|||
is_del = #{record.isDel,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_ht_question_show |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
question_id = #{record.questionId,jdbcType=BIGINT}, |
|||
show_type = #{record.showType,jdbcType=TINYINT}, |
|||
show_node = #{record.showNode,jdbcType=TINYINT}, |
|||
param = #{record.param,jdbcType=VARCHAR}, |
|||
sort = #{record.sort,jdbcType=TINYINT}, |
|||
remark = #{record.remark,jdbcType=VARCHAR}, |
|||
create_time = #{record.createTime,jdbcType=TIMESTAMP}, |
|||
update_time = #{record.updateTime,jdbcType=TIMESTAMP}, |
|||
is_del = #{record.isDel,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.ht.bean.po.HtQuestionShow"> |
|||
update t_ht_question_show |
|||
<set> |
|||
<if test="questionId != null"> |
|||
question_id = #{questionId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="showType != null"> |
|||
show_type = #{showType,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="showNode != null"> |
|||
show_node = #{showNode,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="param != null"> |
|||
param = #{param,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="sort != null"> |
|||
sort = #{sort,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="remark != null"> |
|||
remark = #{remark,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="createTime != null"> |
|||
create_time = #{createTime,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updateTime != null"> |
|||
update_time = #{updateTime,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="isDel != null"> |
|||
is_del = #{isDel,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.ht.bean.po.HtQuestionShow"> |
|||
update t_ht_question_show |
|||
set question_id = #{questionId,jdbcType=BIGINT}, |
|||
show_type = #{showType,jdbcType=TINYINT}, |
|||
show_node = #{showNode,jdbcType=TINYINT}, |
|||
param = #{param,jdbcType=VARCHAR}, |
|||
sort = #{sort,jdbcType=TINYINT}, |
|||
remark = #{remark,jdbcType=VARCHAR}, |
|||
create_time = #{createTime,jdbcType=TIMESTAMP}, |
|||
update_time = #{updateTime,jdbcType=TIMESTAMP}, |
|||
is_del = #{isDel,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
@ -0,0 +1,147 @@ |
|||
package com.ccsens.util; |
|||
|
|||
import com.alibaba.fastjson.JSONObject; |
|||
import org.junit.Test; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: whj |
|||
* @time: 2021/6/10 14:41 |
|||
*/ |
|||
public class JsonTest { |
|||
|
|||
@Test |
|||
public void test01(){ |
|||
String content = "{\"showType\":1,\"showNode\":1,\"param\":{\"type\":0,\"name\":\"one\",\"max\":2,\"min\":2}}"; |
|||
JSONObject.parseObject("{\"showType\":0,\"showNode\":0,\"param\":{\"type\":\"0\",\"code\":\"AVLT\",\"sort\":4,\"time\":300}}"); |
|||
HtQuestionShow show = JSONObject.parseObject(content, HtQuestionShow.class); |
|||
System.out.println(show); |
|||
} |
|||
|
|||
public static class HtQuestionShow implements Serializable { |
|||
private Long id; |
|||
|
|||
private Long questionId; |
|||
|
|||
private Byte showType; |
|||
|
|||
private Byte showNode; |
|||
|
|||
private String param; |
|||
|
|||
private Byte sort; |
|||
|
|||
private String remark; |
|||
|
|||
private Date createTime; |
|||
|
|||
private Date updateTime; |
|||
|
|||
private Byte isDel; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Long getQuestionId() { |
|||
return questionId; |
|||
} |
|||
|
|||
public void setQuestionId(Long questionId) { |
|||
this.questionId = questionId; |
|||
} |
|||
|
|||
public Byte getShowType() { |
|||
return showType; |
|||
} |
|||
|
|||
public void setShowType(Byte showType) { |
|||
this.showType = showType; |
|||
} |
|||
|
|||
public Byte getShowNode() { |
|||
return showNode; |
|||
} |
|||
|
|||
public void setShowNode(Byte showNode) { |
|||
this.showNode = showNode; |
|||
} |
|||
|
|||
public String getParam() { |
|||
return param; |
|||
} |
|||
|
|||
public void setParam(String param) { |
|||
this.param = param == null ? null : param.trim(); |
|||
} |
|||
|
|||
public Byte getSort() { |
|||
return sort; |
|||
} |
|||
|
|||
public void setSort(Byte sort) { |
|||
this.sort = sort; |
|||
} |
|||
|
|||
public String getRemark() { |
|||
return remark; |
|||
} |
|||
|
|||
public void setRemark(String remark) { |
|||
this.remark = remark == null ? null : remark.trim(); |
|||
} |
|||
|
|||
public Date getCreateTime() { |
|||
return createTime; |
|||
} |
|||
|
|||
public void setCreateTime(Date createTime) { |
|||
this.createTime = createTime; |
|||
} |
|||
|
|||
public Date getUpdateTime() { |
|||
return updateTime; |
|||
} |
|||
|
|||
public void setUpdateTime(Date updateTime) { |
|||
this.updateTime = updateTime; |
|||
} |
|||
|
|||
public Byte getIsDel() { |
|||
return isDel; |
|||
} |
|||
|
|||
public void setIsDel(Byte isDel) { |
|||
this.isDel = isDel; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", questionId=").append(questionId); |
|||
sb.append(", showType=").append(showType); |
|||
sb.append(", showNode=").append(showNode); |
|||
sb.append(", param=").append(param); |
|||
sb.append(", sort=").append(sort); |
|||
sb.append(", remark=").append(remark); |
|||
sb.append(", createTime=").append(createTime); |
|||
sb.append(", updateTime=").append(updateTime); |
|||
sb.append(", isDel=").append(isDel); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue