项目管理接口相关逻辑补充,部门添加型行政区划树状层级业务等
This commit is contained in:
@ -73,6 +73,41 @@ public class SysDept extends BaseEntity
|
||||
@ApiModelProperty("删除标志(0代表存在 2代表删除)")
|
||||
private String delFlag;
|
||||
|
||||
/** 行政区域 */
|
||||
@ApiModelProperty("行政区域")
|
||||
private String administrativeArea;
|
||||
|
||||
/** 行政区域代码 */
|
||||
@ApiModelProperty("行政区域代码")
|
||||
private String administrativeAreaCode;
|
||||
|
||||
/** 行政区域省代码 */
|
||||
@ApiModelProperty("行政区域省代码")
|
||||
private String provinceCode;
|
||||
|
||||
/** 行政区域市代码 */
|
||||
@ApiModelProperty("行政区域市代码")
|
||||
private String cityCode;
|
||||
|
||||
/** 行政区域县代码 */
|
||||
@ApiModelProperty("行政区域县代码")
|
||||
private String countyCode;
|
||||
|
||||
/** 行政区域镇代码 */
|
||||
@ApiModelProperty("行政区域镇代码")
|
||||
private String townCode;
|
||||
|
||||
/** 行政区域村代码 */
|
||||
@ApiModelProperty("行政区域村代码")
|
||||
private String villageCode;
|
||||
|
||||
/** 部门管理的项目id */
|
||||
@ApiModelProperty("部门管理的项目id")
|
||||
private Long projectId;
|
||||
|
||||
|
||||
//业务字段-----------------------------------------------------------------------------------------------------------
|
||||
|
||||
/** 父部门名称 */
|
||||
@ApiModelProperty("父部门名称")
|
||||
private String parentName;
|
||||
|
Reference in New Issue
Block a user