fix: 统一工单优先级类型为Integer
Some checks failed
Java CI with Maven / build (11) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled
Java CI with Maven / build (8) (push) Has been cancelled

修改:
- TrafficThresholdConfig.orderPriority: String -> Integer
- CleanOrderCreateEventDTO.priority: String -> Integer
- CleanOrderCreateEventHandler: 移除Integer.parseInt调用

与数据库tinyint类型保持一致

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
lzh
2026-01-28 14:12:24 +08:00
parent eae021c464
commit 3c92bfc02c
3 changed files with 6 additions and 6 deletions

View File

@@ -37,9 +37,9 @@ public class TrafficThresholdConfig {
/**
* 工单优先级
* <p>
* P0 = 紧急
* P1 = 重要
* P2 = 普通
* 0 = P0紧急
* 1 = P1重要
* 2 = P2普通
*/
private String orderPriority;
private Integer orderPriority;
}