部门代码调整

This commit is contained in:
2022-12-06 10:12:36 +08:00
parent 8f49a4eefd
commit cdf75aaea1
4 changed files with 21 additions and 0 deletions

View File

@@ -26,6 +26,11 @@ public class DeptDTO implements Serializable {
private String code;
/**
* 专项分析类型区分
*/
private Integer specialType;
private String area;
private String remark;

View File

@@ -35,6 +35,12 @@ public class DeptParam {
@ApiModelProperty("部门编号")
private String code;
/**
* 专项分析类型区分
*/
@ApiModelProperty("专项分析类型区分 1.本部类型 其他非本部类型")
private Integer specialType;
@ApiModelProperty("排序")
@NotNull(message = ValidMessage.SORT_NOT_NULL)
@Min(value = 0, message = ValidMessage.SORT_FORMAT_ERROR)

View File

@@ -43,6 +43,11 @@ public class Dept extends BaseEntity {
*/
private String code;
/**
* 专项分析类型区分
*/
private Integer specialType;
/**
* sys_Area行政区域Id自定义部门无需填写部门
*/

View File

@@ -40,6 +40,11 @@ public class DeptVO implements Serializable {
*/
private String code;
/**
* 专项分析类型区分
*/
private Integer specialType;
/**
* 行政区域name
*/