package com.doumee.dao.business.dto; import com.doumee.dao.business.model.YwConditioner; import com.doumee.dao.business.model.YwCustomerGs; import com.doumee.dao.business.model.YwElectrical; import lombok.Data; import java.util.List; @Data public class YwCustomerRechargeDetailVO { private Integer customerId; private String customerName; private String phone; private YwCustomerGs gsConfig; private List electricalList; private List conditionerList; }