feat(Employee): add empType and empTypeName fields to Employee DTOs and entity

This commit is contained in:
2026-01-01 20:36:23 +08:00
parent 463300d45d
commit f3b2395d39
2 changed files with 5 additions and 0 deletions

View File

@@ -134,6 +134,8 @@ public class CreateEmployeeDto extends OrgCommonDto {
@Comment("员工状态")
private String empStatus;
@Comment("员工类型")
private String empType;
@Comment("身份证签发机关")

View File

@@ -140,6 +140,9 @@ public class UpdateEmployeeDto extends OrgCommonDto {
@Comment("员工状态")
private String empStatus;
@Comment("员工类型")
private String empType;
@Comment("身份证签发机关")
private String issueAuthority;