update 会员组

This commit is contained in:
2024-01-02 15:29:30 +08:00
parent 0518eb536d
commit 0199b743a9
8 changed files with 188 additions and 68 deletions

View File

@@ -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;
}