未排单创建排单新需求接口逻辑更改,相关接口逻辑更改,排单排序接口修改

This commit is contained in:
liuzhaotian
2025-02-21 15:23:27 +08:00
parent 17971a98dd
commit 405be1af0d
41 changed files with 897 additions and 294 deletions
@@ -0,0 +1,26 @@
package com.cf.imes.framework.common.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
@Getter
public enum MixConfigTypeEnum {
SAMEMATERIALANDTHICKNESS(1,"相同材质和厚度"),
SAMETHICKNESS(2,"相同厚度");
private Integer type;
private String filterName;
public boolean equals(Integer type) {
return this.type .equals(type) ;
}
public boolean equals(MixConfigTypeEnum enableStatusEnum) {
return enableStatusEnum != null && enableStatusEnum.type .equals(this.getType()) ;
}
}