mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 12:05:05 +08:00
update 会员组
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
package com.jsowell.pile.vo.web;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class MemberGroupVO {
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 会员组编号
|
||||
*/
|
||||
private String groupCode;
|
||||
|
||||
/**
|
||||
* 运营商id
|
||||
*/
|
||||
private String merchantId;
|
||||
|
||||
/**
|
||||
* 运营商名称
|
||||
*/
|
||||
private String merchantName;
|
||||
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 站点名称
|
||||
*/
|
||||
private String stationName;
|
||||
|
||||
/** 会员组等级 */
|
||||
private String groupLevel;
|
||||
|
||||
/** 类型(1-服务费折扣,2-电费折扣 ,3-电费和服务费一起折扣) */
|
||||
private String groupType;
|
||||
|
||||
/** 折扣率 */
|
||||
private BigDecimal discount;
|
||||
}
|
||||
Reference in New Issue
Block a user