| | |
| | | package com.yeshi.fanli.dao.mybatis.vipshop; |
| | | |
| | | import com.ks.lijin.query.BaseDaoQuery; |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.vipshop.VipShopOrder; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface VipShopOrderMapper extends BaseMapper<VipShopOrder> { |
| | | |
| | | VipShopOrder selectByOrderSn(String orderSn); |
| | | VipShopOrder selectByOrderSn(String orderSn); |
| | | |
| | | |
| | | List<VipShopOrder> list(@Param("query") DaoQuery query); |
| | | |
| | | long count(@Param("query") DaoQuery query); |
| | | |
| | | |
| | | public class DaoQuery extends BaseDaoQuery { |
| | | |
| | | public String orderSubStatusName; |
| | | |
| | | |
| | | } |
| | | |
| | | } |