| | |
| | | @Mapper |
| | | public interface ComShopStoreDAO extends BaseMapper<ComShopStoreDO> { |
| | | |
| | | @Select("select id,`name`,classify_id,logo,phone,delivery_type,remark,`status`,sale,sale_volume,store_detail from com_shop_store") |
| | | @Select("<script>" + |
| | | "select id,`name`,classify_id,logo,phone,delivery_type,remark,`status`,sale,sale_volume,store_detail from com_shop_store c" + |
| | | " <where>" + |
| | | "<if test='pageComShopStoreDTO.contacts != null and pageComShopStoreDTO.contacts.trim() != ""'>" + |
| | | "and c.contacts like concat('%',#{pageComShopStoreDTO.contacts},'%') \n" + |
| | | " </if> " + |
| | | "<if test='pageComShopStoreDTO.account != null and pageComShopStoreDTO.account.trim() != ""'>" + |
| | | "and c.account = #{pageComShopStoreDTO.account} \n" + |
| | | " </if> " + |
| | | "<if test='pageComShopStoreDTO.name != null and pageComShopStoreDTO.name.trim() != ""'>" + |
| | | "and c.`name` like concat('%',#{pageComShopStoreDTO.name},'%') \n" + |
| | | " </if> " + |
| | | "<if test='pageComShopStoreDTO.deliveryType != null'>" + |
| | | "and c.delivery_type =#{pageComShopStoreDTO.deliveryType}\n" + |
| | | " </if> " + |
| | | "<if test='pageComShopStoreDTO.status != null'>" + |
| | | "and c.status =#{pageComShopStoreDTO.status} \n" + |
| | | " </if> " + |
| | | " </where>" + |
| | | " order by c.create_at desc"+ |
| | | "</script>") |
| | | IPage<ComShopStoreVO> pageShopStore(Page page, @Param("pageComShopStoreDTO") PageComShopStoreDTO pageComShopStoreDTO); |
| | | |
| | | } |