删除 src/main/resources/mapper/ProjectWeeklyMapper.xml

This commit is contained in:
zty 2024-07-15 16:53:38 +08:00
parent 107efc0241
commit 8a0a67bd50

View File

@ -1,24 +0,0 @@
<?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=".mapper.ProjectWeeklyMapper">
<resultMap id="BaseResultMap" type=".domain.ProjectWeekly">
<id property="id" column="id_" jdbcType="VARCHAR"/>
<result property="projectId" column="project_id" jdbcType="VARCHAR"/>
<result property="userId" column="user_id" jdbcType="VARCHAR"/>
<result property="workload" column="workload" jdbcType="VARCHAR"/>
<result property="thisWeek" column="this_week" jdbcType="VARCHAR"/>
<result property="nextWeek" column="next_week" jdbcType="VARCHAR"/>
<result property="weeklyType" column="weekly_type" jdbcType="VARCHAR"/>
<result property="isDeleted" column="is_deleted" jdbcType="VARCHAR"/>
<result property="isComplete" column="is_complete" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id_,project_id,user_id,
workload,this_week,next_week,
weekly_type,is_deleted,is_complete
</sql>
</mapper>