|
@@ -41,8 +41,7 @@ public class YiZhuCheckData {
|
|
|
private Boolean passTheAudit = true;
|
|
|
private final List<String> groupList = Arrays.asList("71", "73");
|
|
|
private Repel repel = null;
|
|
|
-
|
|
|
- private String ONCE = "ONCE";
|
|
|
+ private final String ONCE = "ONCE";
|
|
|
|
|
|
|
|
|
public YiZhuCheckData(YiZhuLuRuDao dao) {
|
|
@@ -58,8 +57,7 @@ public class YiZhuCheckData {
|
|
|
}
|
|
|
|
|
|
public YiZhuCheckData init(XinZhenYzActOrder orderData, XinZhenYiZhu patientInformation) {
|
|
|
- List<XinZhenYzActOrder> temp = new ArrayList<>();
|
|
|
- temp.add(orderData);
|
|
|
+ List<XinZhenYzActOrder> temp = Collections.singletonList(orderData);
|
|
|
init(temp, patientInformation);
|
|
|
return this;
|
|
|
}
|