代码提交-glj

This commit is contained in:
glj 2023-04-19 10:37:03 +08:00
parent f71755741f
commit f47f07dabc
2 changed files with 3 additions and 15 deletions

View File

@ -25,11 +25,6 @@ public class GuestManageDisasterRef implements Serializable {
*/ */
private Long sponsorId; private Long sponsorId;
/**
* 响应用户
*/
private Long uploaderId;
/** /**
* 管理人 * 管理人
*/ */
@ -40,11 +35,6 @@ public class GuestManageDisasterRef implements Serializable {
*/ */
private Long disasterId; private Long disasterId;
/**
* 灾害id
*/
private String responseOrganization;
/** /**
* 审核状态 0未审核 1审核通过 2审核不通过 * 审核状态 0未审核 1审核通过 2审核不通过
*/ */

View File

@ -7,15 +7,14 @@
<resultMap id="BaseResultMap" type="com.kening.vordm.entity.GuestManageDisasterRef"> <resultMap id="BaseResultMap" type="com.kening.vordm.entity.GuestManageDisasterRef">
<id property="id" column="id" jdbcType="BIGINT"/> <id property="id" column="id" jdbcType="BIGINT"/>
<result property="sponsorId" column="sponsor_id" jdbcType="BIGINT"/> <result property="sponsorId" column="sponsor_id" jdbcType="BIGINT"/>
<result property="uploaderId" column="uploader_id" jdbcType="BIGINT"/>
<result property="managerId" column="manager_id" jdbcType="BIGINT"/> <result property="managerId" column="manager_id" jdbcType="BIGINT"/>
<result property="disasterId" column="disaster_id" jdbcType="BIGINT"/> <result property="disasterId" column="disaster_id" jdbcType="BIGINT"/>
<result property="responseOrganization" column="response_organization"/> <result property="status" column="status"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id,sponsor_id,uploader_id, id,sponsor_id,
manager_id,disaster_id,response_organization manager_id,disaster_id,status
</sql> </sql>
<select id="queryPage" resultType="com.kening.vordm.entity.AdminManager"> <select id="queryPage" resultType="com.kening.vordm.entity.AdminManager">
@ -24,7 +23,6 @@
gmdr.sponsor_id, gmdr.sponsor_id,
gmdr.manager_id, gmdr.manager_id,
gmdr.disaster_id, gmdr.disaster_id,
gmdr.response_organization,
gmdr.status, gmdr.status,
bu.name as managerName, bu.name as managerName,
bu.research_field as researchField, bu.research_field as researchField,