This commit is contained in:
2025-08-29 18:01:56 +08:00
parent 43c848171d
commit c1263c753d
8 changed files with 148 additions and 76 deletions
@@ -50,6 +50,11 @@ public class EvaluateApply extends BaseModel {
@Comment("姓名")
private String userName;
@Column
@ColDefine(type = ColType.VARCHAR, width = 100)
@Comment("联系方式")
private String mobile;
@Column
@Comment("出生日期")
@ColDefine(type = ColType.DATE)
@@ -55,7 +55,7 @@ public class EvaluateServiceImpl extends BaseServiceImpl<EvaluateApply> implemen
$condition
""");
Cnd cnd = Cnd.NEW();
cnd.andEX("YEAR(info.year)", "=", pageForm.getYear());
cnd.andEX("YEAR(info.applyDateTime)", "=", pageForm.getYear());
cnd.andEX("info.evaluateId", "=", pageForm.getEvaluateId());
cnd.and("ins.state", "=", ProcessTaskStateEnum.FINISHED.getCode());
cnd.andEX("info.unitId", "=", pageForm.getUnitId());