fix:自查、文件url

pg_adapter
wangxy 6 months ago
parent a78f187833
commit 276a6fdd44

@ -82,6 +82,16 @@ public class TdCheckType implements Serializable {
*/
private String remark;
/**
*
*/
private String fileUrl;
/**
*
*/
private String fileName;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}

@ -81,6 +81,17 @@ public class TdCheckTypeDTO implements Serializable {
private String remark;
/**
*
*/
private String fileUrl;
/**
*
*/
private String fileName;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}

@ -17,11 +17,13 @@
<result property="score" column="score" jdbcType="VARCHAR"/>
<result property="realScore" column="real_score" jdbcType="VARCHAR"/>
<result property="deductionCriteria" column="deduction_criteria" jdbcType="VARCHAR"/>
<result property="fileUrl" column="file_url" jdbcType="VARCHAR"/>
<result property="fileName" column="file_name" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id,check_id,check_type,
type_content,starts,type_name,check_items,score,real_score,deduction_criteria,items_type,
remark
remark,file_url,file_name
</sql>
</mapper>

Loading…
Cancel
Save