renkang
2 天以前 4a99240038013c7d962040e6f8eabd2d72095fd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.doumee.dao.business.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
public class YwCustomerGsConfigDTO {
 
    private Integer customerId;
    private Integer isPwr;
    private Integer isRestStop;
    private String gsBz;
    /** 欠费额度(元) */
    private BigDecimal stopMoney;
    private List<ConditionerItem> conditioners;
 
    @Data
    public static class ConditionerItem {
        private Integer conditionerId;
        private Integer devRatio;
    }
}