Compare commits
No commits in common. "7bc4e7ef7885c272c5dd5b50868bf660b021ef33" and "5b16e363a083b5a3f37e513f2c6a835481ce4475" have entirely different histories.
7bc4e7ef78
...
5b16e363a0
|
@ -174,28 +174,4 @@ public class TdQuestion implements Serializable {
|
||||||
@TableField("EXAM_KEYS")
|
@TableField("EXAM_KEYS")
|
||||||
private String examKeys;
|
private String examKeys;
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否精讯500题
|
|
||||||
*/
|
|
||||||
@TableField("IS_VIP")
|
|
||||||
private Integer isVip;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否精讯600题
|
|
||||||
*/
|
|
||||||
@TableField("IS_VIP2")
|
|
||||||
private Integer isVip2;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否密卷1
|
|
||||||
*/
|
|
||||||
@TableField("IS_EXAM1")
|
|
||||||
private Integer isExam1;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否密卷2
|
|
||||||
*/
|
|
||||||
@TableField("IS_EXAM2")
|
|
||||||
private Integer isExam2;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -171,22 +171,4 @@ public class QusetionVo {
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty("考点")
|
@ApiModelProperty("考点")
|
||||||
private String examKeys;
|
private String examKeys;
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否精讯600题
|
|
||||||
*/
|
|
||||||
@ApiModelProperty("精讯600题")
|
|
||||||
private Integer isVip2;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否密卷1
|
|
||||||
*/
|
|
||||||
@ApiModelProperty("是否密卷1")
|
|
||||||
private Integer isExam1;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否密卷2
|
|
||||||
*/
|
|
||||||
@ApiModelProperty("是否密卷2")
|
|
||||||
private Integer isExam2;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,10 +29,7 @@
|
||||||
tq.IS_VIP,
|
tq.IS_VIP,
|
||||||
tq.IS_ERROR,
|
tq.IS_ERROR,
|
||||||
tq.IS_NEW,
|
tq.IS_NEW,
|
||||||
tq.EXAM_KEYS,
|
tq.EXAM_KEYS
|
||||||
tq.IS_EXAM1,
|
|
||||||
tq.IS_EXAM2,
|
|
||||||
tq.IS_VIP2
|
|
||||||
from td_question tq
|
from td_question tq
|
||||||
left join td_point_question tpq on tq.QUESTION_ID = tpq.QUESTION_ID and tq.CAR_TYPE_ID = tpq.CAR_TYPE_ID and
|
left join td_point_question tpq on tq.QUESTION_ID = tpq.QUESTION_ID and tq.CAR_TYPE_ID = tpq.CAR_TYPE_ID and
|
||||||
tpq.IS_ACTIVE = '0'
|
tpq.IS_ACTIVE = '0'
|
||||||
|
@ -103,10 +100,7 @@
|
||||||
tq.IS_VIP,
|
tq.IS_VIP,
|
||||||
tq.IS_ERROR,
|
tq.IS_ERROR,
|
||||||
tq.IS_NEW,
|
tq.IS_NEW,
|
||||||
tq.EXAM_KEYS,
|
tq.EXAM_KEYS
|
||||||
tq.IS_EXAM1,
|
|
||||||
tq.IS_EXAM2,
|
|
||||||
tq.IS_VIP2
|
|
||||||
from td_question tq
|
from td_question tq
|
||||||
<where>
|
<where>
|
||||||
tq.IS_ACTIVE = '0'
|
tq.IS_ACTIVE = '0'
|
||||||
|
@ -138,15 +132,6 @@
|
||||||
<if test="qusetionVo.examKeys !=null">
|
<if test="qusetionVo.examKeys !=null">
|
||||||
EXAM_KEYS = #{qusetionVo.examKeys},
|
EXAM_KEYS = #{qusetionVo.examKeys},
|
||||||
</if>
|
</if>
|
||||||
<if test="qusetionVo.isVip2 !=null">
|
|
||||||
IS_VIP2 = #{qusetionVo.isVip2},
|
|
||||||
</if>
|
|
||||||
<if test="qusetionVo.isExam1 !=null">
|
|
||||||
IS_EXAM1 = #{qusetionVo.isExam1},
|
|
||||||
</if>
|
|
||||||
<if test="qusetionVo.isExam2 !=null">
|
|
||||||
IS_EXAM2 = #{qusetionVo.isExam2},
|
|
||||||
</if>
|
|
||||||
</trim>
|
</trim>
|
||||||
where QUESTION_ID = #{qusetionVo.questionId}
|
where QUESTION_ID = #{qusetionVo.questionId}
|
||||||
</update>
|
</update>
|
||||||
|
|
Loading…
Reference in New Issue