导出放开限制,测量阶段通知
This commit is contained in:
@@ -46,4 +46,7 @@ public class OrderSysInfoDAO {
|
||||
}
|
||||
return orderSysInfoMapper.getSpecificByShopIdList(shopIdList);
|
||||
}
|
||||
public Integer updateAddresseeAddress(OrderSysInfoDO orderSysInfoDO){
|
||||
return orderSysInfoMapper.updateAddresseeAddress(orderSysInfoDO);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -157,5 +157,9 @@ public class ShopAccountDAO {
|
||||
return shopAccountMapper.getSpecificByShopIds(shopIds);
|
||||
}
|
||||
|
||||
//数据处理用
|
||||
public List<Long> getPasswordIsNull(){
|
||||
return shopAccountMapper.getPasswordIsNull();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -16,4 +16,7 @@ import java.util.List;
|
||||
public interface OrderSysInfoMapper extends Mapper<OrderSysInfoDO> {
|
||||
|
||||
List<OrderSysInfoDO> getSpecificByShopIdList(@Param("list") List<Long> shopIdList);
|
||||
|
||||
Integer updateAddresseeAddress(@Param("update") OrderSysInfoDO orderSysInfoDO);
|
||||
|
||||
}
|
||||
|
||||
@@ -96,6 +96,9 @@ public interface ShopAccountMapper extends Mapper<ShopAccountDO> {
|
||||
*/
|
||||
List<ShopAccountDO> getSpecificByShopIds(@Param("shopIds") List<Long> shopIds);
|
||||
|
||||
//数据处理用
|
||||
List<Long> getPasswordIsNull();
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -41,6 +41,14 @@
|
||||
receiving_create_time, receiving_update_time, receiving_create_user, receiving_update_user,
|
||||
declare_goods_type
|
||||
</sql>
|
||||
<update id="updateAddresseeAddress">
|
||||
update xfsg_order_sys_info
|
||||
<if test="update.addresseeAddress != null and update.addresseeAddress != ''">
|
||||
set addressee_address = #{update.addresseeAddress}
|
||||
</if>
|
||||
|
||||
where shop_id = #{update.shopId}
|
||||
</update>
|
||||
<select id="getSpecificByShopIdList" resultType="com.cool.store.entity.OrderSysInfoDO">
|
||||
select
|
||||
shop_id as shopId,
|
||||
|
||||
@@ -190,4 +190,9 @@
|
||||
#{shopId}
|
||||
</foreach>
|
||||
</select>
|
||||
<select id="getPasswordIsNull" resultType="java.lang.Long">
|
||||
SELECT shop_id as shopId FROM xfsg_shop_account
|
||||
WHERE `password` is null and `system_name` = '火码POS'
|
||||
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user