|
|
|
@ -45,7 +45,17 @@ private static final long serialVersionUID=1L;
|
|
|
|
|
@Excel(name = "产线/工位")
|
|
|
|
|
private String productLineCode;
|
|
|
|
|
|
|
|
|
|
/** 统计单元类型 */
|
|
|
|
|
private String productLineName;
|
|
|
|
|
|
|
|
|
|
public String getProductLineName() {
|
|
|
|
|
return productLineName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setProductLineName(String productLineName) {
|
|
|
|
|
this.productLineName = productLineName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 统计单元类型 */
|
|
|
|
|
@Excel(name = "统计单元类型")
|
|
|
|
|
private Long workUnitType;
|
|
|
|
|
|
|
|
|
@ -229,23 +239,27 @@ private static final long serialVersionUID=1L;
|
|
|
|
|
return updatedTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString(){
|
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
.append("objId",getObjId())
|
|
|
|
|
.append("workUnitCode",getWorkUnitCode())
|
|
|
|
|
.append("parentId",getParentId())
|
|
|
|
|
.append("workUnitName",getWorkUnitName())
|
|
|
|
|
.append("workUnitAddress",getWorkUnitAddress())
|
|
|
|
|
.append("ancestors",getAncestors())
|
|
|
|
|
.append("workUnitSort",getWorkUnitSort())
|
|
|
|
|
.append("productLineCode",getProductLineCode())
|
|
|
|
|
.append("workUnitType",getWorkUnitType())
|
|
|
|
|
.append("isFlag",getIsFlag())
|
|
|
|
|
.append("createdBy",getCreatedBy())
|
|
|
|
|
.append("createdTime",getCreatedTime())
|
|
|
|
|
.append("updatedBy",getUpdatedBy())
|
|
|
|
|
.append("updatedTime",getUpdatedTime())
|
|
|
|
|
.toString();
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return "BaseWorkUnit{" +
|
|
|
|
|
"objId=" + objId +
|
|
|
|
|
", workUnitCode='" + workUnitCode + '\'' +
|
|
|
|
|
", workUnitName='" + workUnitName + '\'' +
|
|
|
|
|
", workUnitAddress='" + workUnitAddress + '\'' +
|
|
|
|
|
", workUnitSort=" + workUnitSort +
|
|
|
|
|
", productLineCode='" + productLineCode + '\'' +
|
|
|
|
|
", productLineName='" + productLineName + '\'' +
|
|
|
|
|
", workUnitType=" + workUnitType +
|
|
|
|
|
", isFlag=" + isFlag +
|
|
|
|
|
", createdBy='" + createdBy + '\'' +
|
|
|
|
|
", createdTime=" + createdTime +
|
|
|
|
|
", updatedBy='" + updatedBy + '\'' +
|
|
|
|
|
", updatedTime=" + updatedTime +
|
|
|
|
|
", children=" + children +
|
|
|
|
|
", parentName='" + parentName + '\'' +
|
|
|
|
|
", parentId=" + parentId +
|
|
|
|
|
", orderNum=" + orderNum +
|
|
|
|
|
", ancestors='" + ancestors + '\'' +
|
|
|
|
|
'}';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|