mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
update
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package com.jsowell.pile.vo.base;
|
||||
|
||||
import lombok.*;
|
||||
|
||||
/**
|
||||
* 集团会员消费列表VO
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class MemberGroupConsumptionVO {
|
||||
// 会员id
|
||||
private String memberId;
|
||||
|
||||
/**
|
||||
* 车牌号
|
||||
*/
|
||||
private String licensePlateNumber;
|
||||
|
||||
/**
|
||||
* vin
|
||||
*/
|
||||
private String vinCode;
|
||||
|
||||
/**
|
||||
* 总消费金额
|
||||
*/
|
||||
private String totalConsumptionAmount;
|
||||
}
|
||||
Reference in New Issue
Block a user