4 changed files with 0 additions and 182 deletions
@ -1,77 +0,0 @@ |
|||||
package com.epmet.dto.form.resi; |
|
||||
|
|
||||
import lombok.AllArgsConstructor; |
|
||||
import lombok.Data; |
|
||||
import lombok.NoArgsConstructor; |
|
||||
|
|
||||
import java.util.Comparator; |
|
||||
import java.util.List; |
|
||||
import java.util.Map; |
|
||||
import java.util.Set; |
|
||||
|
|
||||
@Data |
|
||||
@NoArgsConstructor |
|
||||
@AllArgsConstructor |
|
||||
public class HeartResisByPolicyRulesFormDTO { |
|
||||
private String ruleId; |
|
||||
private String orgId; |
|
||||
private String orgType; |
|
||||
private String neighborHoodId; |
|
||||
private String buildingId; |
|
||||
private String unitId; |
|
||||
private String houseId; |
|
||||
private String name; |
|
||||
private String mobile; |
|
||||
private String idCard; |
|
||||
private RuleList ruleList; |
|
||||
private Integer pageNo; |
|
||||
private Integer pageSize; |
|
||||
|
|
||||
@Data |
|
||||
@NoArgsConstructor |
|
||||
@AllArgsConstructor |
|
||||
public static class RuleList { |
|
||||
private String ruleName; |
|
||||
private List<ResisByPolicyRulesFormDTO.ResiRule> resiRuleList; |
|
||||
private List<ResisByPolicyRulesFormDTO.HouseRule> houseRuleList; |
|
||||
private List<ResisByPolicyRulesFormDTO.StatRule> statRuleList; |
|
||||
} |
|
||||
|
|
||||
@Data |
|
||||
@NoArgsConstructor |
|
||||
@AllArgsConstructor |
|
||||
public static class ResiRule { |
|
||||
private String ruleDesc; |
|
||||
private String nextLogicalRel; |
|
||||
private String itemGroupId; |
|
||||
private String itemId; |
|
||||
private String queryType; |
|
||||
private String colTable; |
|
||||
private String colKey; |
|
||||
private String colVal; |
|
||||
} |
|
||||
|
|
||||
@Data |
|
||||
@NoArgsConstructor |
|
||||
@AllArgsConstructor |
|
||||
public static class HouseRule { |
|
||||
private String colTable; |
|
||||
private String colKey; |
|
||||
private String colVal; |
|
||||
private String ruleDesc; |
|
||||
private String nextLogicalRel; |
|
||||
private String queryType; |
|
||||
} |
|
||||
|
|
||||
@Data |
|
||||
@NoArgsConstructor |
|
||||
@AllArgsConstructor |
|
||||
public static class StatRule { |
|
||||
private String colKey; |
|
||||
private String colVal; |
|
||||
private String nextLogicalRel; |
|
||||
private String ruleDesc; |
|
||||
private String queryType; |
|
||||
private String colTable; |
|
||||
} |
|
||||
} |
|
Loading…
Reference in new issue