功能房-添加手机号码字段
This commit is contained in:
@@ -185,7 +185,13 @@ private static final long serialVersionUID=1L;
|
|||||||
private String feedback;
|
private String feedback;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 手机号码
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("手机号码")
|
||||||
|
@TableField("mobile_phone")
|
||||||
|
@Excel(name = "手机号码")
|
||||||
|
private String mobilePhone;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 功能房-开放时间
|
* 功能房-开放时间
|
||||||
|
|||||||
@@ -52,6 +52,7 @@
|
|||||||
<result property="auditStatus" column="audit_status"/>
|
<result property="auditStatus" column="audit_status"/>
|
||||||
<result property="editOpinion" column="edit_opinion"/>
|
<result property="editOpinion" column="edit_opinion"/>
|
||||||
<result property="feedback" column="feedback"/>
|
<result property="feedback" column="feedback"/>
|
||||||
|
<result property="mobilePhone" column="mobile_phone"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<!--功能房开放时间-->
|
<!--功能房开放时间-->
|
||||||
|
|||||||
@@ -29,6 +29,7 @@
|
|||||||
<result property="updateBy" column="update_by" />
|
<result property="updateBy" column="update_by" />
|
||||||
<result property="updateTime" column="update_time" />
|
<result property="updateTime" column="update_time" />
|
||||||
<result property="remark" column="remark" />
|
<result property="remark" column="remark" />
|
||||||
|
<result property="mobilePhone" column="mobile_phone"/>
|
||||||
<!--查询功能房的开放时间-->
|
<!--查询功能房的开放时间-->
|
||||||
<collection property="staffOneStopRoomOpeningHoursList" column="{rtNo = rt_no}"
|
<collection property="staffOneStopRoomOpeningHoursList" column="{rtNo = rt_no}"
|
||||||
javaType="java.util.ArrayList" select="selectStaffOneStopRoomOpeningHoursByRoomNo">
|
javaType="java.util.ArrayList" select="selectStaffOneStopRoomOpeningHoursByRoomNo">
|
||||||
@@ -134,7 +135,8 @@
|
|||||||
rt_depar,
|
rt_depar,
|
||||||
audit_status,
|
audit_status,
|
||||||
edit_opinion,
|
edit_opinion,
|
||||||
feedback
|
feedback,
|
||||||
|
mobile_phone
|
||||||
from staff_one_stop_room_reservation
|
from staff_one_stop_room_reservation
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
@@ -247,6 +249,7 @@
|
|||||||
<if test="updateBy != null">update_by,</if>
|
<if test="updateBy != null">update_by,</if>
|
||||||
<if test="updateTime != null">update_time,</if>
|
<if test="updateTime != null">update_time,</if>
|
||||||
<if test="remark != null">remark,</if>
|
<if test="remark != null">remark,</if>
|
||||||
|
<if test="mobilePhone != null">mobile_phone,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="rtNo != null">#{rtNo},</if>
|
<if test="rtNo != null">#{rtNo},</if>
|
||||||
@@ -272,6 +275,7 @@
|
|||||||
<if test="updateBy != null">#{updateBy},</if>
|
<if test="updateBy != null">#{updateBy},</if>
|
||||||
<if test="updateTime != null">#{updateTime},</if>
|
<if test="updateTime != null">#{updateTime},</if>
|
||||||
<if test="remark != null">#{remark},</if>
|
<if test="remark != null">#{remark},</if>
|
||||||
|
<if test="mobilePhone != null">#{mobilePhone},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
@@ -301,6 +305,7 @@
|
|||||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||||
<if test="remark != null">remark = #{remark},</if>
|
<if test="remark != null">remark = #{remark},</if>
|
||||||
|
<if test="mobilePhone != null">mobile_phone = #{mobilePhone},</if>
|
||||||
</trim>
|
</trim>
|
||||||
where rt_id = #{rtId}
|
where rt_id = #{rtId}
|
||||||
</update>
|
</update>
|
||||||
|
|||||||
Reference in New Issue
Block a user