@ -32,6 +32,9 @@ public class OemTaskBillVO extends OemTaskBillEntity {
private String tbStatusName;
public String getTbStatusName() {
if (this.getTbStatus() == null) {
return "未处理"; // 或者返回其他默认值,如 "未知"
}
return this.getTbStatus() == 1 ? "已处理" : "未处理";