Authored by jianhui_wang

用户信息查询

... ... @@ -50,7 +50,7 @@
select count(1)
from orders
where uid = #{uid,jdbcType=INTEGER}
and order_status >= 600
and order_status in(600,700)
and create_time > #{createTime,jdbcType=INTEGER}
</select>
... ...
... ... @@ -80,7 +80,7 @@ public class UserInfoImportServiceImpl implements IBusinessImportService {
UserRegisterBuyInfoBO UserRegisterBuyInfoBO_id = new UserRegisterBuyInfoBO();
if (userProfile == null) {
UserRegisterBuyInfoBO_id.setId(i + 1);
UserRegisterBuyInfoBO_id.setMobile(mobile.substring(0, 3) + " **** " + mobile.substring(7));
UserRegisterBuyInfoBO_id.setMobile(mobile==null?"":mobile);
UserRegisterBuyInfoBO_id.setRegister("未注册");
UserRegisterBuyInfoBO_id.setUid(uid <= 0 ? 0 : uid);
UserRegisterBuyInfoBO_id.setRegisterTime("0");
... ...
... ... @@ -107,13 +107,14 @@
align: "center"
}]],
cache: false,
pagination: true,
layout:false,
pageSize: 10,
pageList: [10],
// pagination: true,
pagination: false,
// pageSize: 10,
// pageList: [10],
singleSelect: true
});
// $(".pagination-page-list").hide();
// $(".pagination-links").hide();
});
function batchProgramDialog() {
... ... @@ -173,16 +174,18 @@
align: "center"
}]],
cache: false,
pagination: true,
layout:false,
pageSize: 10,
pageList: [10],
idField: "mobile",
// pagination: true,
pagination: false,
// pageSize: 10,
// pageList: [10],
// idField: "mobile",
singleSelect: true,
checkOnSelect: false,
onLoadSuccess: function () {
}
});
// $(".pagination-page-list").hide();
// $(".pagination-links").hide();
}
});
... ...