PunishmentsApprovalDto-新增参数测试
All checks were successful
CodeChecker 变更检测 / code-check (push) Successful in 23s

This commit is contained in:
2026-06-09 15:41:36 +08:00
parent ac558bdc89
commit c8840e2af0
2 changed files with 8 additions and 0 deletions

View File

@@ -12,6 +12,9 @@ checker:
# 类变更检测Vo/Dto/Entity/Model 字段增删改等)
class_check:
enabled: true
# Dto 类字段变更后,继续检测受影响 Controller 的 API 参数变更
dto_api_follow_up:
enabled: true
dto_entity_conversion:
enabled: false
@@ -46,3 +49,5 @@ wecom:
notify:
only_on_change: true
# Dto 类变更与 API 参数变更重叠时的通知策略both | class_only | api_only
dto_overlap_mode: both

View File

@@ -19,6 +19,9 @@ public class PunishmentsApprovalDto {
/** 用户Id 暂弃 */
private String userId;
/** testId */
private String testId;
/** 惩罚核算日 */
private Date day;