|
|
@ -4,14 +4,15 @@ import java.io.Serializable;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotations.KeySequence;
|
|
|
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
|
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* The persistent class for the sys_company database table.
|
|
|
|
* The persistent class for the sys_company database table.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@TableName(value="sys_company")
|
|
|
|
@TableName(value="sys_company")
|
|
|
|
|
|
|
|
@KeySequence
|
|
|
|
public class SysCompanyEntity implements Serializable {
|
|
|
|
public class SysCompanyEntity implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
|
@ -27,7 +28,7 @@ public class SysCompanyEntity implements Serializable {
|
|
|
|
private String parentCodes;
|
|
|
|
private String parentCodes;
|
|
|
|
private String remarks;
|
|
|
|
private String remarks;
|
|
|
|
private String status;
|
|
|
|
private String status;
|
|
|
|
private String treeLeaf;
|
|
|
|
private Boolean treeLeaf;
|
|
|
|
private BigDecimal treeLevel;
|
|
|
|
private BigDecimal treeLevel;
|
|
|
|
private String treeNames;
|
|
|
|
private String treeNames;
|
|
|
|
private BigDecimal treeSort;
|
|
|
|
private BigDecimal treeSort;
|
|
|
@ -39,14 +40,6 @@ public class SysCompanyEntity implements Serializable {
|
|
|
|
public SysCompanyEntity() {
|
|
|
|
public SysCompanyEntity() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getCompanyCode() {
|
|
|
|
|
|
|
|
return this.companyCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCompanyCode(String companyCode) {
|
|
|
|
|
|
|
|
this.companyCode = companyCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getAreaCode() {
|
|
|
|
public String getAreaCode() {
|
|
|
|
return this.areaCode;
|
|
|
|
return this.areaCode;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -135,14 +128,6 @@ public class SysCompanyEntity implements Serializable {
|
|
|
|
this.status = status;
|
|
|
|
this.status = status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getTreeLeaf() {
|
|
|
|
|
|
|
|
return this.treeLeaf;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setTreeLeaf(String treeLeaf) {
|
|
|
|
|
|
|
|
this.treeLeaf = treeLeaf;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BigDecimal getTreeLevel() {
|
|
|
|
public BigDecimal getTreeLevel() {
|
|
|
|
return this.treeLevel;
|
|
|
|
return this.treeLevel;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -199,4 +184,24 @@ public class SysCompanyEntity implements Serializable {
|
|
|
|
this.viewCode = viewCode;
|
|
|
|
this.viewCode = viewCode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Boolean getTreeLeaf() {
|
|
|
|
|
|
|
|
return treeLeaf;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setTreeLeaf(Boolean treeLeaf) {
|
|
|
|
|
|
|
|
this.treeLeaf = treeLeaf;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getId() {
|
|
|
|
|
|
|
|
return this.getCompanyCode();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCompanyCode() {
|
|
|
|
|
|
|
|
return companyCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCompanyCode(String companyCode) {
|
|
|
|
|
|
|
|
this.companyCode = companyCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|