Commit 212f4c38 by guojuxing

装修配置挑战:添加可用积分已经会员卡列表数据调整

parent 8d71313d
......@@ -30,7 +30,7 @@ public class AppletDataAssetAreaDTO implements Serializable{
private String coupon;
/**
* 零售订单 会员卡ID,英文逗号隔开
* 线下订单 会员卡ID,英文逗号隔开
*/
private String order;
......
package com.gic.enterprise.dto;
import lombok.Data;
import lombok.experimental.Accessors;
import java.io.Serializable;
/**
* 数据资产-总积分可选择的会员卡列表
* @ClassName: AppletMainCardDTO

* @Description: 

* @author guojuxing

* @date 2020/3/12 10:58 AM

*/
@Accessors(chain = true)
@Data
public class AppletMainCardDTO implements Serializable{
private static final long serialVersionUID = 2778537858866796472L;
private Long cardConfigId;
private String cardName;
/**
* 是否是主卡,否:关联的平衡组主卡
*/
private Boolean isMainCard;
}
......@@ -52,4 +52,14 @@ public interface AppletDecorationConfigApiService {
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Object>


 */
ServiceResponse<Object> listAppletCard(String appId, Integer enterpriseId);
/**
* 总积分能够选择的卡列表
* @Title: listAppletCardOfTotalIntegral

* @Description:

* @author guojuxing
* @param appId
* @param enterpriseId

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Object>


*/
ServiceResponse<Object> listAppletCardOfTotalIntegral(String appId, Integer enterpriseId);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment