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