|
|
|
@ -32,17 +32,13 @@ public class Organize extends BaseBean {
|
|
|
|
|
@ApiParam(value ="名称" , access ="名称")
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
@Column(name="ORGANIZATION_CODE")
|
|
|
|
|
@Column(name="ORGANIZE_CODE")
|
|
|
|
|
@ApiParam(value ="组织代码" , access ="组织代码")
|
|
|
|
|
private String organizationCode;
|
|
|
|
|
private String organizeCode;
|
|
|
|
|
|
|
|
|
|
@Column(name="ORGANIZATION_TYPE_ID")
|
|
|
|
|
@Column(name="ORGANIZE_TYPE_ID")
|
|
|
|
|
@ApiParam(value ="组织类型ID(1.集团,2.公司,3.工厂)" , example ="1" , access ="组织类型ID(1.集团,2.公司,3.工厂)")
|
|
|
|
|
private Integer organizationTypeId;
|
|
|
|
|
|
|
|
|
|
@Column(name="ORGANIZATION_TYPE_NAME")
|
|
|
|
|
@ApiParam(value ="组织类型名称" , access ="组织类型名称")
|
|
|
|
|
private String organizationTypeName;
|
|
|
|
|
private Integer organizeTypeId;
|
|
|
|
|
|
|
|
|
|
@Column(name="PARENT_ID")
|
|
|
|
|
@ApiParam(value ="父节点" , access ="父节点" ,example = "0")
|
|
|
|
@ -52,16 +48,16 @@ public class Organize extends BaseBean {
|
|
|
|
|
@ApiParam(value ="父节点" , access ="父节点")
|
|
|
|
|
private String redParentName;
|
|
|
|
|
|
|
|
|
|
@Column(name="ORGANIZATION_DESCRIPTION")
|
|
|
|
|
@Column(name="ORGANIZE_DESCRIPTION")
|
|
|
|
|
@ApiParam(value ="组织描述" , access ="组织描述")
|
|
|
|
|
private String organizationDescription;
|
|
|
|
|
private String organizeDescription;
|
|
|
|
|
|
|
|
|
|
@Column(name="ORGANIZATION_SORT")
|
|
|
|
|
@Column(name="ORGANIZE_SORT")
|
|
|
|
|
@ApiParam(value ="排序" , example ="1" , access ="排序")
|
|
|
|
|
private Integer organizationSort;
|
|
|
|
|
private Integer organizeSort;
|
|
|
|
|
|
|
|
|
|
@Column(name="ORGANIZATION_STATUS")
|
|
|
|
|
@Column(name="ORGANIZE_STATUS")
|
|
|
|
|
@ApiParam(value ="组织状态(1.正常,2.禁用)" , example ="1" , access ="组织状态(1.正常,2.禁用)")
|
|
|
|
|
private Integer organizationStatus;
|
|
|
|
|
private Integer organizeStatus;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|