合并问题

This commit is contained in:
2024-04-15 15:22:24 +08:00
parent 44d669110f
commit ca1cdd545c
3 changed files with 1 additions and 7 deletions

View File

@@ -2,7 +2,6 @@ package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.TbProduct;
import com.chaozhanggui.system.cashierservice.entity.TbProductWithBLOBs;
import com.chaozhanggui.system.cashierservice.entity.TbSystemCoupons;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
@@ -33,6 +32,4 @@ public interface TbProductMapper {
List<TbProduct> selectByIds(@Param("list") List<String> ids);
Integer selectByQcode(@Param("code") String code,@Param("productId") Integer productId,@Param("shopId") String shopId);
Integer selectByNewQcode(@Param("code") String code,@Param("productId") Integer productId,@Param("shopId") String shopId,@Param("list") List<String> list);
TbSystemCoupons selectLimit();
}

View File

@@ -20,7 +20,7 @@ public class HomeDto {
*/
private String lng;
/**
* 品类 1.附近1Km
* 品类
*/
private String type;

View File

@@ -933,7 +933,4 @@
#{item}
</foreach>
</select>
<select id="selectLimit" resultType="com.chaozhanggui.system.cashierservice.entity.TbSystemCoupons">
select * from tb_system_coupons limit 1
</select>
</mapper>