|
|
@@ -28,6 +28,7 @@
|
|
|
<result column="work_wx_corp" property="workWxCorp" />
|
|
|
<result column="work_wx_register_at" property="workWxRegisterAt" />
|
|
|
<result column="work_wx_status" property="workWxStatus" />
|
|
|
+ <result column="in_pool" property="inPool" />
|
|
|
<result column="task_start_at" property="taskStartAt" />
|
|
|
<result column="code_url" property="codeUrl"/>
|
|
|
<result column="create_at" property="createAt" />
|
|
|
@@ -37,7 +38,7 @@
|
|
|
<!-- 通用查询结果列 -->
|
|
|
<sql id="Base_Column_List">
|
|
|
id
|
|
|
- , station_id, mobile_code, mobile_unio_code, mobile_no, mobile_operator, mobile_create_at, mobile_advance_pay_amt, mobile_combo, mobile_combo_flow, mobile_real_name, mobile_identity_card_no, status, wx_status, wx_password, wx_real_name, wx_identity_card_no, wx_register_at, wx_appid, bank_card_no, bank_card_mobile_no, work_wx_corp, work_wx_register_at, work_wx_status, task_start_at, code_url, create_at, update_at
|
|
|
+ , station_id, mobile_code, mobile_unio_code, mobile_no, mobile_operator, mobile_create_at, mobile_advance_pay_amt, mobile_combo, mobile_combo_flow, mobile_real_name, mobile_identity_card_no, status, wx_status, wx_password, wx_real_name, wx_identity_card_no, wx_register_at, wx_appid, bank_card_no, bank_card_mobile_no, work_wx_corp, work_wx_register_at, work_wx_status, in_pool, task_start_at, code_url, create_at, update_at
|
|
|
</sql>
|
|
|
<select id="getList" resultType="com.mokamrp.privates.mapper.pangu.pojo.FosterwxMobile">
|
|
|
SELECT * FROM pan_fosterwx_mobile
|
|
|
@@ -49,6 +50,7 @@
|
|
|
<if test="param.mobileOperator != null">and mobile_operator = #{param.mobileOperator}</if>
|
|
|
<if test="param.wxStatus != null">and wx_status = #{param.wxStatus}</if>
|
|
|
<if test="param.status != null">and status = #{param.status}</if>
|
|
|
+ <if test="param.inPool != null">and in_pool = #{param.inPool}</if>
|
|
|
<if test="param.stationId != null">and station_id = #{param.stationId}</if>
|
|
|
<if test="param.createDate != null">and left(create_at,10) = #{param.createDate}</if>
|
|
|
<if test="param.updateDate != null">and left(update_at,10) = #{param.updateDate}</if>
|