permission
This commit is contained in:
parent
d9828671c7
commit
7159663aec
2
sql/20221014-xia-paper-composition.sql
Normal file
2
sql/20221014-xia-paper-composition.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
ALTER TABLE `joylink`.`rts_paper_composition`
|
||||||
|
ADD COLUMN `full_score` int NULL COMMENT '满分' AFTER `pass_score`;
|
@ -38,15 +38,7 @@ public class PaperCompositionController {
|
|||||||
*/
|
*/
|
||||||
@PutMapping("/basic")
|
@PutMapping("/basic")
|
||||||
public void updatePaperCompositionProfile(@RequestBody PaperCompositionBasicVo req, @RequestAttribute AccountVO user) {
|
public void updatePaperCompositionProfile(@RequestBody PaperCompositionBasicVo req, @RequestAttribute AccountVO user) {
|
||||||
compositionService.updatePaperCompositionProfile(req, user);
|
compositionService.updatePaperCompositionBasic(req, user);
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 修改试卷蓝图详细信息
|
|
||||||
*/
|
|
||||||
//@PutMapping("/detail")
|
|
||||||
public void updatePaperCompositionDetail(@RequestBody PaperCompositionDetailVo req, @RequestAttribute AccountVO user) {
|
|
||||||
compositionService.updatePaperCompositionDetail(req, user);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -50,6 +50,11 @@ public class PaperComposition implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer passScore;
|
private Integer passScore;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 满分
|
||||||
|
*/
|
||||||
|
private Integer fullScore;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建者id
|
* 创建者id
|
||||||
*/
|
*/
|
||||||
|
@ -625,6 +625,66 @@ public class PaperCompositionExample {
|
|||||||
return (Criteria) this;
|
return (Criteria) this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreIsNull() {
|
||||||
|
addCriterion("full_score is null");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreIsNotNull() {
|
||||||
|
addCriterion("full_score is not null");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreEqualTo(Integer value) {
|
||||||
|
addCriterion("full_score =", value, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreNotEqualTo(Integer value) {
|
||||||
|
addCriterion("full_score <>", value, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreGreaterThan(Integer value) {
|
||||||
|
addCriterion("full_score >", value, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreGreaterThanOrEqualTo(Integer value) {
|
||||||
|
addCriterion("full_score >=", value, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreLessThan(Integer value) {
|
||||||
|
addCriterion("full_score <", value, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreLessThanOrEqualTo(Integer value) {
|
||||||
|
addCriterion("full_score <=", value, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreIn(List<Integer> values) {
|
||||||
|
addCriterion("full_score in", values, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreNotIn(List<Integer> values) {
|
||||||
|
addCriterion("full_score not in", values, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreBetween(Integer value1, Integer value2) {
|
||||||
|
addCriterion("full_score between", value1, value2, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Criteria andFullScoreNotBetween(Integer value1, Integer value2) {
|
||||||
|
addCriterion("full_score not between", value1, value2, "fullScore");
|
||||||
|
return (Criteria) this;
|
||||||
|
}
|
||||||
|
|
||||||
public Criteria andCreatorIdIsNull() {
|
public Criteria andCreatorIdIsNull() {
|
||||||
addCriterion("creator_id is null");
|
addCriterion("creator_id is null");
|
||||||
return (Criteria) this;
|
return (Criteria) this;
|
||||||
|
@ -27,6 +27,7 @@ public enum PaperExceptionAssert implements BusinessExceptionAssert {
|
|||||||
PuqCanSubmit(60019,"用户可以提交试题答案"),
|
PuqCanSubmit(60019,"用户可以提交试题答案"),
|
||||||
PpValid(60020,"请求参数有效"),
|
PpValid(60020,"请求参数有效"),
|
||||||
PdValid(60021,"数据有效"),
|
PdValid(60021,"数据有效"),
|
||||||
|
PcScore(60022,"试卷定义中分数"),
|
||||||
;
|
;
|
||||||
|
|
||||||
int code;
|
int code;
|
||||||
|
@ -341,7 +341,15 @@ public class DraftMapService implements IDraftMapService {
|
|||||||
@Override
|
@Override
|
||||||
public void publish(Long id, DraftMapVO draftMapVO, AccountVO accountVO) {
|
public void publish(Long id, DraftMapVO draftMapVO, AccountVO accountVO) {
|
||||||
DraftMapWithBLOBs draftMap = draftMapDAO.selectByPrimaryKey(id);
|
DraftMapWithBLOBs draftMap = draftMapDAO.selectByPrimaryKey(id);
|
||||||
MapDataVO mapDataVO = new MapDataVO(JsonUtils.read(draftMap.getGraphData(), MapGraphDataNewVO.class), getMapLogicDataNew(id),
|
//修改地图逻辑数据中调度台的id为null
|
||||||
|
MapLogicDataNewVO mapLogicDataNewVO = getMapLogicDataNew(id);
|
||||||
|
if(null!=mapLogicDataNewVO.getDisStationList()){
|
||||||
|
mapLogicDataNewVO.getDisStationList().forEach(dis->{
|
||||||
|
dis.setId(null);
|
||||||
|
dis.setMapId(null);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
MapDataVO mapDataVO = new MapDataVO(JsonUtils.read(draftMap.getGraphData(), MapGraphDataNewVO.class),mapLogicDataNewVO ,
|
||||||
MapCheckConfig.fromJson(draftMap.getCheckConfig()));
|
MapCheckConfig.fromJson(draftMap.getCheckConfig()));
|
||||||
mapDataVO.setMap3dDataVO(find3dMapDataByMapId(id));
|
mapDataVO.setMap3dDataVO(find3dMapDataByMapId(id));
|
||||||
iMapService.publish(new MapVO(draftMap, draftMapVO.getName(), draftMapVO.getCityCode()), mapDataVO, accountVO);
|
iMapService.publish(new MapVO(draftMap, draftMapVO.getName(), draftMapVO.getCityCode()), mapDataVO, accountVO);
|
||||||
@ -526,6 +534,7 @@ public class DraftMapService implements IDraftMapService {
|
|||||||
if (!CollectionUtils.isEmpty(logicDataVO.getDisStationList())){
|
if (!CollectionUtils.isEmpty(logicDataVO.getDisStationList())){
|
||||||
logicDataVO.getDisStationList().forEach(mapDisStationVo->{
|
logicDataVO.getDisStationList().forEach(mapDisStationVo->{
|
||||||
mapDisStationVo.setMapId(id);
|
mapDisStationVo.setMapId(id);
|
||||||
|
mapDisStationVo.setId(null);
|
||||||
draftMapDisStationService.store(mapDisStationVo);
|
draftMapDisStationService.store(mapDisStationVo);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -37,6 +37,8 @@ public class PaperCompositionService {
|
|||||||
private PaperRuleDAO ruleDAO;
|
private PaperRuleDAO ruleDAO;
|
||||||
@Autowired
|
@Autowired
|
||||||
private SysAccountDAO sysAccountDAO;
|
private SysAccountDAO sysAccountDAO;
|
||||||
|
@Autowired
|
||||||
|
private PaperRuleService paperRuleService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建试卷蓝图
|
* 创建试卷蓝图
|
||||||
@ -55,6 +57,7 @@ public class PaperCompositionService {
|
|||||||
newPc.setEndTime(req.getEndTime());
|
newPc.setEndTime(req.getEndTime());
|
||||||
newPc.setValidDuration(req.getValidDuration());
|
newPc.setValidDuration(req.getValidDuration());
|
||||||
newPc.setPassScore(req.getPassScore());
|
newPc.setPassScore(req.getPassScore());
|
||||||
|
newPc.setFullScore(req.getFullScore());
|
||||||
newPc.setCreateTime(LocalDateTime.now());
|
newPc.setCreateTime(LocalDateTime.now());
|
||||||
newPc.setUpdateTime(LocalDateTime.now());
|
newPc.setUpdateTime(LocalDateTime.now());
|
||||||
newPc.setCreatorId(user.getId());
|
newPc.setCreatorId(user.getId());
|
||||||
@ -77,7 +80,7 @@ public class PaperCompositionService {
|
|||||||
* 修改试卷蓝图基础信息(名称、项目、简介)
|
* 修改试卷蓝图基础信息(名称、项目、简介)
|
||||||
*/
|
*/
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void updatePaperCompositionProfile(PaperCompositionBasicVo req, AccountVO user) {
|
public void updatePaperCompositionBasic(PaperCompositionBasicVo req, AccountVO user) {
|
||||||
PaperComposition curPc = compositionDAO.selectByPrimaryKey(req.getId());
|
PaperComposition curPc = compositionDAO.selectByPrimaryKey(req.getId());
|
||||||
assertPaperCompositionCanModify(curPc);
|
assertPaperCompositionCanModify(curPc);
|
||||||
//
|
//
|
||||||
@ -97,26 +100,10 @@ public class PaperCompositionService {
|
|||||||
curPc.setEndTime(req.getEndTime());
|
curPc.setEndTime(req.getEndTime());
|
||||||
curPc.setValidDuration(req.getValidDuration());
|
curPc.setValidDuration(req.getValidDuration());
|
||||||
curPc.setPassScore(req.getPassScore());
|
curPc.setPassScore(req.getPassScore());
|
||||||
|
curPc.setFullScore(req.getFullScore());
|
||||||
compositionDAO.updateByPrimaryKeySelective(curPc);
|
compositionDAO.updateByPrimaryKeySelective(curPc);
|
||||||
}
|
//校验分值
|
||||||
|
PaperExceptionAssert.PcScore.assertTrue(paperRuleService.checkRulesScoreLessOrEqualFull(curPc.getId()),"规则总分值大于试卷总分值");
|
||||||
/**
|
|
||||||
* 修改试卷蓝图详细信息
|
|
||||||
*/
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
public void updatePaperCompositionDetail(PaperCompositionDetailVo req, AccountVO user) {
|
|
||||||
PaperComposition curPc = compositionDAO.selectByPrimaryKey(req.getId());
|
|
||||||
assertPaperCompositionCanModify(curPc);
|
|
||||||
//
|
|
||||||
PaperComposition updatePc = new PaperComposition();
|
|
||||||
updatePc.setId(req.getId());
|
|
||||||
updatePc.setUpdateTime(LocalDateTime.now());
|
|
||||||
updatePc.setStartTime(req.getStartTime());
|
|
||||||
updatePc.setEndTime(req.getEndTime());
|
|
||||||
updatePc.setValidDuration(req.getValidDuration());
|
|
||||||
updatePc.setPassScore(req.getPassScore());
|
|
||||||
//
|
|
||||||
compositionDAO.updateByPrimaryKeySelective(updatePc);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -131,6 +118,8 @@ public class PaperCompositionService {
|
|||||||
nPc.setId(curPc.getId());
|
nPc.setId(curPc.getId());
|
||||||
nPc.setState(PaperCompositionState.Locked.getValue());
|
nPc.setState(PaperCompositionState.Locked.getValue());
|
||||||
compositionDAO.updateByPrimaryKeySelective(nPc);
|
compositionDAO.updateByPrimaryKeySelective(nPc);
|
||||||
|
// 封存试卷时校验总分值与规则总分值是否相等
|
||||||
|
PaperExceptionAssert.PcScore.assertTrue(paperRuleService.checkRulesScoreEqualFull(curPc.getId()),"规则总分值不等于试卷总分值");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -383,4 +372,5 @@ public class PaperCompositionService {
|
|||||||
example.createCriteria().andPcIdEqualTo(pcId);
|
example.createCriteria().andPcIdEqualTo(pcId);
|
||||||
return ruleDAO.selectByExample(example);
|
return ruleDAO.selectByExample(example);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -39,6 +39,7 @@ public class PaperRuleService {
|
|||||||
//
|
//
|
||||||
compositionService.assertPaperCompositionCanModify(rule.getPcId());
|
compositionService.assertPaperCompositionCanModify(rule.getPcId());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 试卷蓝图添加规则
|
* 试卷蓝图添加规则
|
||||||
*/
|
*/
|
||||||
@ -54,6 +55,7 @@ public class PaperRuleService {
|
|||||||
//
|
//
|
||||||
ruleDAO.insertSelective(rule);
|
ruleDAO.insertSelective(rule);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 断言试卷蓝图某类型的规则不存在
|
* 断言试卷蓝图某类型的规则不存在
|
||||||
*/
|
*/
|
||||||
@ -65,6 +67,7 @@ public class PaperRuleService {
|
|||||||
List<PaperRule> list = ruleDAO.selectByExample(example);
|
List<PaperRule> list = ruleDAO.selectByExample(example);
|
||||||
PaperExceptionAssert.PrNotExisted.assertTrue(CollectionUtils.isEmpty(list), String.format("试卷定义(pcId=%s)的规则(%s)已经存在", pcId, ruleType.name()));
|
PaperExceptionAssert.PrNotExisted.assertTrue(CollectionUtils.isEmpty(list), String.format("试卷定义(pcId=%s)的规则(%s)已经存在", pcId, ruleType.name()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新(保存)试卷蓝图的规则
|
* 更新(保存)试卷蓝图的规则
|
||||||
*/
|
*/
|
||||||
@ -104,15 +107,19 @@ public class PaperRuleService {
|
|||||||
//
|
//
|
||||||
ruleDAO.deleteByPrimaryKey(ruleId);
|
ruleDAO.deleteByPrimaryKey(ruleId);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询试卷蓝图的所有规则
|
* 查询试卷蓝图的所有规则
|
||||||
*
|
*
|
||||||
* @param pcId 试卷蓝图的id
|
* @param pcId 试卷蓝图的id
|
||||||
*/
|
*/
|
||||||
|
@Transactional(readOnly = true)
|
||||||
public List<PaperRuleVo> findAllPaperCompositionRule(Long pcId, AccountVO user) {
|
public List<PaperRuleVo> findAllPaperCompositionRule(Long pcId, AccountVO user) {
|
||||||
List<PaperRule> list = findAllByPcId(pcId);
|
List<PaperRule> list = findAllByPcId(pcId);
|
||||||
if (CollectionUtils.isEmpty(list)) return new ArrayList<>();
|
if (CollectionUtils.isEmpty(list)) return new ArrayList<>();
|
||||||
return list.stream().map(pr->{return PaperRuleConvertor.convert(pr);}).collect(Collectors.toList());
|
return list.stream().map(pr -> {
|
||||||
|
return PaperRuleConvertor.convert(pr);
|
||||||
|
}).collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Transactional(readOnly = true)
|
@Transactional(readOnly = true)
|
||||||
@ -121,4 +128,38 @@ public class PaperRuleService {
|
|||||||
example.createCriteria().andPcIdEqualTo(pcId);
|
example.createCriteria().andPcIdEqualTo(pcId);
|
||||||
return ruleDAO.selectByExample(example);
|
return ruleDAO.selectByExample(example);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 校验规则当前规定的总分值是否小于等于试卷蓝图中的满分
|
||||||
|
*/
|
||||||
|
@Transactional(readOnly = true)
|
||||||
|
public boolean checkRulesScoreLessOrEqualFull(Long pcId) {
|
||||||
|
PaperComposition curPc = compositionDAO.selectByPrimaryKey(pcId);
|
||||||
|
PaperExceptionAssert.PcExisted.assertTrue(null != curPc, String.format("试卷定义[id = %s]不存在", pcId));
|
||||||
|
List<PaperRule> ruleList = findAllByPcId(pcId);
|
||||||
|
int ruleScore = 0;
|
||||||
|
if (!CollectionUtils.isEmpty(ruleList)) {
|
||||||
|
ruleScore = ruleList.stream().mapToInt(rule -> {
|
||||||
|
return rule.getScore() * rule.getAmount();
|
||||||
|
}).sum();
|
||||||
|
}
|
||||||
|
return ruleScore <= curPc.getFullScore();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 校验规则当前规定的总分值是否等于试卷蓝图中的满分
|
||||||
|
*/
|
||||||
|
@Transactional(readOnly = true)
|
||||||
|
public boolean checkRulesScoreEqualFull(Long pcId) {
|
||||||
|
PaperComposition curPc = compositionDAO.selectByPrimaryKey(pcId);
|
||||||
|
PaperExceptionAssert.PcExisted.assertTrue(null != curPc, String.format("试卷定义[id = %s]不存在", pcId));
|
||||||
|
List<PaperRule> ruleList = findAllByPcId(pcId);
|
||||||
|
int ruleScore = 0;
|
||||||
|
if (!CollectionUtils.isEmpty(ruleList)) {
|
||||||
|
ruleScore = ruleList.stream().mapToInt(rule -> {
|
||||||
|
return rule.getScore() * rule.getAmount();
|
||||||
|
}).sum();
|
||||||
|
}
|
||||||
|
return ruleScore == curPc.getFullScore();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -41,5 +41,11 @@ public class CreatePaperCompositionReqVo {
|
|||||||
/**
|
/**
|
||||||
* 及格分
|
* 及格分
|
||||||
*/
|
*/
|
||||||
|
@NotNull
|
||||||
private Integer passScore;
|
private Integer passScore;
|
||||||
|
/**
|
||||||
|
* 满分
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
private Integer fullScore;
|
||||||
}
|
}
|
||||||
|
@ -49,4 +49,8 @@ public class PaperCompositionBasicVo {
|
|||||||
* 及格分
|
* 及格分
|
||||||
*/
|
*/
|
||||||
private Integer passScore;
|
private Integer passScore;
|
||||||
|
/**
|
||||||
|
* 满分
|
||||||
|
*/
|
||||||
|
private Integer fullScore;
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
<result column="end_time" jdbcType="TIMESTAMP" property="endTime" />
|
<result column="end_time" jdbcType="TIMESTAMP" property="endTime" />
|
||||||
<result column="valid_duration" jdbcType="INTEGER" property="validDuration" />
|
<result column="valid_duration" jdbcType="INTEGER" property="validDuration" />
|
||||||
<result column="pass_score" jdbcType="INTEGER" property="passScore" />
|
<result column="pass_score" jdbcType="INTEGER" property="passScore" />
|
||||||
|
<result column="full_score" jdbcType="INTEGER" property="fullScore" />
|
||||||
<result column="creator_id" jdbcType="BIGINT" property="creatorId" />
|
<result column="creator_id" jdbcType="BIGINT" property="creatorId" />
|
||||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
||||||
@ -74,8 +75,8 @@
|
|||||||
</where>
|
</where>
|
||||||
</sql>
|
</sql>
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
id, `name`, profile, org_id, start_time, end_time, valid_duration, pass_score, creator_id,
|
id, `name`, profile, org_id, start_time, end_time, valid_duration, pass_score, full_score,
|
||||||
create_time, update_time, `state`
|
creator_id, create_time, update_time, `state`
|
||||||
</sql>
|
</sql>
|
||||||
<select id="selectByExample" parameterType="club.joylink.rtss.entity.paper.PaperCompositionExample" resultMap="BaseResultMap">
|
<select id="selectByExample" parameterType="club.joylink.rtss.entity.paper.PaperCompositionExample" resultMap="BaseResultMap">
|
||||||
select
|
select
|
||||||
@ -118,14 +119,14 @@
|
|||||||
<insert id="insert" parameterType="club.joylink.rtss.entity.paper.PaperComposition">
|
<insert id="insert" parameterType="club.joylink.rtss.entity.paper.PaperComposition">
|
||||||
insert into rts_paper_composition (id, `name`, profile,
|
insert into rts_paper_composition (id, `name`, profile,
|
||||||
org_id, start_time, end_time,
|
org_id, start_time, end_time,
|
||||||
valid_duration, pass_score, creator_id,
|
valid_duration, pass_score, full_score,
|
||||||
create_time, update_time, `state`
|
creator_id, create_time, update_time,
|
||||||
)
|
`state`)
|
||||||
values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, #{profile,jdbcType=VARCHAR},
|
values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, #{profile,jdbcType=VARCHAR},
|
||||||
#{orgId,jdbcType=BIGINT}, #{startTime,jdbcType=TIMESTAMP}, #{endTime,jdbcType=TIMESTAMP},
|
#{orgId,jdbcType=BIGINT}, #{startTime,jdbcType=TIMESTAMP}, #{endTime,jdbcType=TIMESTAMP},
|
||||||
#{validDuration,jdbcType=INTEGER}, #{passScore,jdbcType=INTEGER}, #{creatorId,jdbcType=BIGINT},
|
#{validDuration,jdbcType=INTEGER}, #{passScore,jdbcType=INTEGER}, #{fullScore,jdbcType=INTEGER},
|
||||||
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{state,jdbcType=INTEGER}
|
#{creatorId,jdbcType=BIGINT}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP},
|
||||||
)
|
#{state,jdbcType=INTEGER})
|
||||||
</insert>
|
</insert>
|
||||||
<insert id="insertSelective" parameterType="club.joylink.rtss.entity.paper.PaperComposition">
|
<insert id="insertSelective" parameterType="club.joylink.rtss.entity.paper.PaperComposition">
|
||||||
insert into rts_paper_composition
|
insert into rts_paper_composition
|
||||||
@ -154,6 +155,9 @@
|
|||||||
<if test="passScore != null">
|
<if test="passScore != null">
|
||||||
pass_score,
|
pass_score,
|
||||||
</if>
|
</if>
|
||||||
|
<if test="fullScore != null">
|
||||||
|
full_score,
|
||||||
|
</if>
|
||||||
<if test="creatorId != null">
|
<if test="creatorId != null">
|
||||||
creator_id,
|
creator_id,
|
||||||
</if>
|
</if>
|
||||||
@ -192,6 +196,9 @@
|
|||||||
<if test="passScore != null">
|
<if test="passScore != null">
|
||||||
#{passScore,jdbcType=INTEGER},
|
#{passScore,jdbcType=INTEGER},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="fullScore != null">
|
||||||
|
#{fullScore,jdbcType=INTEGER},
|
||||||
|
</if>
|
||||||
<if test="creatorId != null">
|
<if test="creatorId != null">
|
||||||
#{creatorId,jdbcType=BIGINT},
|
#{creatorId,jdbcType=BIGINT},
|
||||||
</if>
|
</if>
|
||||||
@ -239,6 +246,9 @@
|
|||||||
<if test="record.passScore != null">
|
<if test="record.passScore != null">
|
||||||
pass_score = #{record.passScore,jdbcType=INTEGER},
|
pass_score = #{record.passScore,jdbcType=INTEGER},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="record.fullScore != null">
|
||||||
|
full_score = #{record.fullScore,jdbcType=INTEGER},
|
||||||
|
</if>
|
||||||
<if test="record.creatorId != null">
|
<if test="record.creatorId != null">
|
||||||
creator_id = #{record.creatorId,jdbcType=BIGINT},
|
creator_id = #{record.creatorId,jdbcType=BIGINT},
|
||||||
</if>
|
</if>
|
||||||
@ -266,6 +276,7 @@
|
|||||||
end_time = #{record.endTime,jdbcType=TIMESTAMP},
|
end_time = #{record.endTime,jdbcType=TIMESTAMP},
|
||||||
valid_duration = #{record.validDuration,jdbcType=INTEGER},
|
valid_duration = #{record.validDuration,jdbcType=INTEGER},
|
||||||
pass_score = #{record.passScore,jdbcType=INTEGER},
|
pass_score = #{record.passScore,jdbcType=INTEGER},
|
||||||
|
full_score = #{record.fullScore,jdbcType=INTEGER},
|
||||||
creator_id = #{record.creatorId,jdbcType=BIGINT},
|
creator_id = #{record.creatorId,jdbcType=BIGINT},
|
||||||
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
||||||
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
||||||
@ -298,6 +309,9 @@
|
|||||||
<if test="passScore != null">
|
<if test="passScore != null">
|
||||||
pass_score = #{passScore,jdbcType=INTEGER},
|
pass_score = #{passScore,jdbcType=INTEGER},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="fullScore != null">
|
||||||
|
full_score = #{fullScore,jdbcType=INTEGER},
|
||||||
|
</if>
|
||||||
<if test="creatorId != null">
|
<if test="creatorId != null">
|
||||||
creator_id = #{creatorId,jdbcType=BIGINT},
|
creator_id = #{creatorId,jdbcType=BIGINT},
|
||||||
</if>
|
</if>
|
||||||
@ -322,6 +336,7 @@
|
|||||||
end_time = #{endTime,jdbcType=TIMESTAMP},
|
end_time = #{endTime,jdbcType=TIMESTAMP},
|
||||||
valid_duration = #{validDuration,jdbcType=INTEGER},
|
valid_duration = #{validDuration,jdbcType=INTEGER},
|
||||||
pass_score = #{passScore,jdbcType=INTEGER},
|
pass_score = #{passScore,jdbcType=INTEGER},
|
||||||
|
full_score = #{fullScore,jdbcType=INTEGER},
|
||||||
creator_id = #{creatorId,jdbcType=BIGINT},
|
creator_id = #{creatorId,jdbcType=BIGINT},
|
||||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||||
|
Loading…
Reference in New Issue
Block a user