doum
7 天以前 e46bfa3ff94a8a1b4daf37c7fcb79c2fab22a72c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.doumee.dao.business.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class YwCustomerRechargeElectricalDTO {
 
    private Integer customerId;
    private Integer electricalId;
    private BigDecimal money;
    private String remark;
    /** resetPrepay / resetPostpay */
    private String resetAction;
}