|
@@ -12,6 +12,13 @@ import java.util.List;
|
|
|
* Created by macro on 2018/8/29.
|
|
|
*/
|
|
|
public interface SmsCouponHistoryDao {
|
|
|
+ /**
|
|
|
+ * 获取优惠券历史详情
|
|
|
+ */
|
|
|
List<SmsCouponHistoryDetail> getDetailList(@Param("memberId") Long memberId);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取指定会员优惠券列表
|
|
|
+ */
|
|
|
List<SmsCoupon> getCouponList(@Param("memberId") Long memberId, @Param("useStatus")Integer useStatus);
|
|
|
}
|