feat:密码数据处理,验签排除空字符串,导出接口
This commit is contained in:
@@ -276,6 +276,8 @@
|
||||
select
|
||||
a.id as id,
|
||||
a.line_id as lineId,
|
||||
a.point_id as pointId,
|
||||
a.store_type as storeType,
|
||||
a.shop_name as shopName,
|
||||
a.want_shop_area_id as wantShopAreaId,
|
||||
a.shop_code as shopCode,
|
||||
@@ -455,6 +457,17 @@
|
||||
from xfsg_shop_info
|
||||
where deleted = 0 and line_id = #{lineId} and shop_code is not null
|
||||
</select>
|
||||
<select id="getListByTime" resultType="com.cool.store.entity.ShopInfoDO">
|
||||
select a.id as id ,
|
||||
a.create_time,
|
||||
a.partner_id as partnerId,
|
||||
a.line_id as lineId
|
||||
from xfsg_shop_info a
|
||||
LEFT JOIN xfsg_partner_user_info b ON a.partner_id = b.partner_id
|
||||
where
|
||||
a.create_time >= '2025-04-19 00:00:00'
|
||||
and b.downstream_system_salting is null;
|
||||
</select>
|
||||
|
||||
<update id="batchUpdate" parameterType="list">
|
||||
<foreach collection="list" item="item" index="index" open="" close="" separator=";">
|
||||
|
||||
Reference in New Issue
Block a user