mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 05:25:12 +08:00
update会员计费模板
This commit is contained in:
@@ -33,4 +33,10 @@ public class MemberDiscountVO {
|
||||
|
||||
/** 折扣率 */
|
||||
private BigDecimal discount;
|
||||
|
||||
/**
|
||||
* 优惠计费模板
|
||||
*/
|
||||
private BillingTemplateVO billingTemplateVO;
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.jsowell.pile.vo.web;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class MemberGroupInfoVO {
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 会员组编号
|
||||
*/
|
||||
private String groupCode;
|
||||
|
||||
/**
|
||||
* 运营商id
|
||||
*/
|
||||
private String merchantId;
|
||||
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 优惠计费模板
|
||||
*/
|
||||
private Map<String, Object> billingTemplateMap;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user