新增计费模板描述字段

This commit is contained in:
2024-02-20 16:49:21 +08:00
parent e6bfafa686
commit 9b6d8b959d
7 changed files with 45 additions and 16 deletions

View File

@@ -6,9 +6,18 @@ import lombok.Setter;
@Getter
@Setter
public class MemberGroupStationVO {
// 站点id
private String stationId;
// 站点名称
private String stationName;
// 优惠计费模板编号
private String templateCode;
// 优惠计费模板备注
private String remark;
// 优惠计费模板描述
private String templateDesc;
}