mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-01 02:38:43 +08:00 
			
		
		
		
	code review:sign 签到逻辑
This commit is contained in:
		| @@ -1,23 +0,0 @@ | ||||
| package cn.iocoder.yudao.module.promotion.api.coupon; | ||||
|  | ||||
| import cn.iocoder.yudao.module.promotion.api.coupon.dto.CouponTemplateRespDTO; | ||||
|  | ||||
| import java.util.Collection; | ||||
| import java.util.List; | ||||
|  | ||||
| /** | ||||
|  * 优惠劵模版 API 接口 | ||||
|  * | ||||
|  * @author HUIHUI | ||||
|  */ | ||||
| public interface CouponTemplateApi { | ||||
|  | ||||
|     /** | ||||
|      * 获得优惠券模版的精简信息列表 | ||||
|      * | ||||
|      * @param ids 优惠券模版编号 | ||||
|      * @return 优惠券模版的精简信息列表 | ||||
|      */ | ||||
|     List<CouponTemplateRespDTO> getCouponTemplateListByIds(Collection<Long> ids); | ||||
|  | ||||
| } | ||||
| @@ -1,30 +0,0 @@ | ||||
| package cn.iocoder.yudao.module.promotion.api.coupon.dto; | ||||
|  | ||||
| import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum; | ||||
| import lombok.Data; | ||||
|  | ||||
| /** | ||||
|  * 优惠券模版 Response DTO | ||||
|  * | ||||
|  * @author HUIHUI | ||||
|  */ | ||||
| @Data | ||||
| public class CouponTemplateRespDTO { | ||||
|     /** | ||||
|      * 模板编号,自增唯一 | ||||
|      */ | ||||
|  | ||||
|     private Long id; | ||||
|     /** | ||||
|      * 优惠劵名 | ||||
|      */ | ||||
|     private String name; | ||||
|  | ||||
|     /** | ||||
|      * 状态 | ||||
|      * | ||||
|      * 枚举 {@link CommonStatusEnum} | ||||
|      */ | ||||
|     private Integer status; | ||||
|  | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV