fix:载体下发销毁接口提交

pg_adapter
wangxy 6 months ago
parent 24a675f77b
commit 4737aa3b6b

@ -93,6 +93,7 @@ public class CheckReportManager {
dataList.forEach(sysDictData2 -> checkTypeItemDTOList.add(CheckTypeItemDTO.builder().typeName(sysDictData1.getDictLabel()) dataList.forEach(sysDictData2 -> checkTypeItemDTOList.add(CheckTypeItemDTO.builder().typeName(sysDictData1.getDictLabel())
.checkType(sysDictData1.getDictValue()) .checkType(sysDictData1.getDictValue())
.checkItems(sysDictData2.getDictLabel()) .checkItems(sysDictData2.getDictLabel())
.itemsType(sysDictData2.getDictCode())
.typeContent(sysDictData2.getDictValue()) .typeContent(sysDictData2.getDictValue())
.score(sysDictData2.getCssClass()) .score(sysDictData2.getCssClass())
.deductionCriteria(sysDictData2.getRemark()) .deductionCriteria(sysDictData2.getRemark())

@ -38,6 +38,11 @@ public class TdCheckType implements Serializable {
*/ */
private String typeName; private String typeName;
/**
*
*/
private Long itemsType;
/** /**
* *

@ -26,11 +26,19 @@ public class CheckTypeItemDTO implements Serializable {
*/ */
private String typeName; private String typeName;
/**
*
*/
private Long itemsType;
/** /**
* *
*/ */
private String checkItems; private String checkItems;
/** /**
* *
*/ */

@ -36,6 +36,11 @@ public class TdCheckTypeDTO implements Serializable {
*/ */
private String typeName; private String typeName;
/**
*
*/
private Long itemsType;
/** /**
* *

@ -12,6 +12,7 @@
<result property="starts" column="starts" jdbcType="VARCHAR"/> <result property="starts" column="starts" jdbcType="VARCHAR"/>
<result property="remark" column="remark" jdbcType="VARCHAR"/> <result property="remark" column="remark" jdbcType="VARCHAR"/>
<result property="typeName" column="type_name" jdbcType="VARCHAR"/> <result property="typeName" column="type_name" jdbcType="VARCHAR"/>
<result property="itemsType" column="items_type" jdbcType="INTEGER"/>
<result property="checkItems" column="check_items" jdbcType="VARCHAR"/> <result property="checkItems" column="check_items" jdbcType="VARCHAR"/>
<result property="score" column="score" jdbcType="VARCHAR"/> <result property="score" column="score" jdbcType="VARCHAR"/>
<result property="realScore" column="real_score" jdbcType="VARCHAR"/> <result property="realScore" column="real_score" jdbcType="VARCHAR"/>
@ -20,7 +21,7 @@
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id,check_id,check_type, id,check_id,check_type,
type_content,starts,type_name,check_items,score,real_score,deduction_criteria, type_content,starts,type_name,check_items,score,real_score,deduction_criteria,items_type,
remark remark
</sql> </sql>
</mapper> </mapper>

Loading…
Cancel
Save