上传文件至 'op-modules/op-sap/src/main/java/com/op/sap/domain'
parent
7177a3ce6e
commit
bef0af36a7
@ -0,0 +1,123 @@
|
|||||||
|
package com.op.sap.domain;
|
||||||
|
|
||||||
|
import com.op.common.core.annotation.Excel;
|
||||||
|
import com.op.common.core.web.domain.BaseEntity;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 附件对象 base_file
|
||||||
|
*
|
||||||
|
* @author Open Platform
|
||||||
|
* @date 2023-07-10
|
||||||
|
*/
|
||||||
|
public class SapBaseFile extends BaseEntity {
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 附件ID */
|
||||||
|
private String fileId;
|
||||||
|
|
||||||
|
/** 附件名称 */
|
||||||
|
@Excel(name = "附件名称")
|
||||||
|
private String fileName;
|
||||||
|
|
||||||
|
/** 附件地址 */
|
||||||
|
@Excel(name = "附件地址")
|
||||||
|
private String fileAddress;
|
||||||
|
|
||||||
|
/** 数据来源 */
|
||||||
|
@Excel(name = "数据来源")
|
||||||
|
private String sourceId;
|
||||||
|
|
||||||
|
/** 预留字段1 */
|
||||||
|
@Excel(name = "预留字段1")
|
||||||
|
private String attr1;
|
||||||
|
|
||||||
|
/** 预留字段2 */
|
||||||
|
@Excel(name = "预留字段2")
|
||||||
|
private String attr2;
|
||||||
|
|
||||||
|
/** 预留字段3 */
|
||||||
|
@Excel(name = "预留字段3")
|
||||||
|
private Long attr3;
|
||||||
|
|
||||||
|
/** 预留字段4 */
|
||||||
|
@Excel(name = "预留字段4")
|
||||||
|
private Long attr4;
|
||||||
|
|
||||||
|
public void setFileId(String fileId) {
|
||||||
|
this.fileId = fileId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFileId() {
|
||||||
|
return fileId;
|
||||||
|
}
|
||||||
|
public void setFileName(String fileName) {
|
||||||
|
this.fileName = fileName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFileName() {
|
||||||
|
return fileName;
|
||||||
|
}
|
||||||
|
public void setFileAddress(String fileAddress) {
|
||||||
|
this.fileAddress = fileAddress;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFileAddress() {
|
||||||
|
return fileAddress;
|
||||||
|
}
|
||||||
|
public void setSourceId(String sourceId) {
|
||||||
|
this.sourceId = sourceId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSourceId() {
|
||||||
|
return sourceId;
|
||||||
|
}
|
||||||
|
public void setAttr1(String attr1) {
|
||||||
|
this.attr1 = attr1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr1() {
|
||||||
|
return attr1;
|
||||||
|
}
|
||||||
|
public void setAttr2(String attr2) {
|
||||||
|
this.attr2 = attr2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr2() {
|
||||||
|
return attr2;
|
||||||
|
}
|
||||||
|
public void setAttr3(Long attr3) {
|
||||||
|
this.attr3 = attr3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getAttr3() {
|
||||||
|
return attr3;
|
||||||
|
}
|
||||||
|
public void setAttr4(Long attr4) {
|
||||||
|
this.attr4 = attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getAttr4() {
|
||||||
|
return attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
|
.append("fileId", getFileId())
|
||||||
|
.append("fileName", getFileName())
|
||||||
|
.append("fileAddress", getFileAddress())
|
||||||
|
.append("sourceId", getSourceId())
|
||||||
|
.append("remark", getRemark())
|
||||||
|
.append("attr1", getAttr1())
|
||||||
|
.append("attr2", getAttr2())
|
||||||
|
.append("attr3", getAttr3())
|
||||||
|
.append("attr4", getAttr4())
|
||||||
|
.append("createBy", getCreateBy())
|
||||||
|
.append("createTime", getCreateTime())
|
||||||
|
.append("updateBy", getUpdateBy())
|
||||||
|
.append("updateTime", getUpdateTime())
|
||||||
|
.toString();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,232 @@
|
|||||||
|
package com.op.sap.domain;
|
||||||
|
|
||||||
|
import com.op.common.core.annotation.Excel;
|
||||||
|
import com.op.common.core.web.domain.BaseEntity;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产工序对象 pro_process
|
||||||
|
*
|
||||||
|
* @author yinjinlu
|
||||||
|
* @date 2022-05-12
|
||||||
|
*/
|
||||||
|
public class SapProProcess extends BaseEntity
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 工序ID */
|
||||||
|
private String processId;
|
||||||
|
|
||||||
|
/** 工序编码 */
|
||||||
|
@Excel(name = "工序编码")
|
||||||
|
private String processCode;
|
||||||
|
|
||||||
|
/** 工序名称 */
|
||||||
|
@Excel(name = "工序名称")
|
||||||
|
private String processName;
|
||||||
|
|
||||||
|
/** 工艺要求 */
|
||||||
|
@Excel(name = "工艺要求")
|
||||||
|
private String attention;
|
||||||
|
|
||||||
|
/** 是否启用 */
|
||||||
|
@Excel(name = "是否启用")
|
||||||
|
private String enableFlag;
|
||||||
|
|
||||||
|
/** 预留字段1 */
|
||||||
|
private String attr1;
|
||||||
|
|
||||||
|
/** 预留字段2 */
|
||||||
|
private String attr2;
|
||||||
|
|
||||||
|
/** 预留字段3 */
|
||||||
|
private Long attr3;
|
||||||
|
|
||||||
|
/** 预留字段4 */
|
||||||
|
private Long attr4;
|
||||||
|
|
||||||
|
private String fileList;
|
||||||
|
private List<SapBaseFile> files;
|
||||||
|
//s:拆分 m合并
|
||||||
|
private String splitMerge;
|
||||||
|
//拆分合并数量
|
||||||
|
private int splitMergNum;
|
||||||
|
//1允许多单并行
|
||||||
|
private String sync;
|
||||||
|
//工作中心
|
||||||
|
private String workCenter;
|
||||||
|
//工作时长
|
||||||
|
private Double workTime;
|
||||||
|
//线体设备
|
||||||
|
private String equipment;
|
||||||
|
|
||||||
|
public List<SapBaseFile> getFiles() {
|
||||||
|
return files;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFiles(List<SapBaseFile> files) {
|
||||||
|
this.files = files;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkCenter() {
|
||||||
|
return workCenter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkCenter(String workCenter) {
|
||||||
|
this.workCenter = workCenter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getWorkTime() {
|
||||||
|
return workTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkTime(Double workTime) {
|
||||||
|
this.workTime = workTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSplitMerge() {
|
||||||
|
return splitMerge;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSplitMerge(String splitMerge) {
|
||||||
|
this.splitMerge = splitMerge;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getSplitMergNum() {
|
||||||
|
return splitMergNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSplitMergNum(int splitMergNum) {
|
||||||
|
this.splitMergNum = splitMergNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSync() {
|
||||||
|
return sync;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSync(String sync) {
|
||||||
|
this.sync = sync;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFileList() {
|
||||||
|
return fileList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFileList(String fileList) {
|
||||||
|
this.fileList = fileList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setProcessId(String processId)
|
||||||
|
{
|
||||||
|
this.processId = processId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProcessId()
|
||||||
|
{
|
||||||
|
return processId;
|
||||||
|
}
|
||||||
|
public void setProcessCode(String processCode)
|
||||||
|
{
|
||||||
|
this.processCode = processCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProcessCode()
|
||||||
|
{
|
||||||
|
return processCode;
|
||||||
|
}
|
||||||
|
public void setProcessName(String processName)
|
||||||
|
{
|
||||||
|
this.processName = processName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProcessName()
|
||||||
|
{
|
||||||
|
return processName;
|
||||||
|
}
|
||||||
|
public void setAttention(String attention)
|
||||||
|
{
|
||||||
|
this.attention = attention;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttention()
|
||||||
|
{
|
||||||
|
return attention;
|
||||||
|
}
|
||||||
|
public void setEnableFlag(String enableFlag)
|
||||||
|
{
|
||||||
|
this.enableFlag = enableFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEnableFlag()
|
||||||
|
{
|
||||||
|
return enableFlag;
|
||||||
|
}
|
||||||
|
public void setAttr1(String attr1)
|
||||||
|
{
|
||||||
|
this.attr1 = attr1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr1()
|
||||||
|
{
|
||||||
|
return attr1;
|
||||||
|
}
|
||||||
|
public void setAttr2(String attr2)
|
||||||
|
{
|
||||||
|
this.attr2 = attr2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr2()
|
||||||
|
{
|
||||||
|
return attr2;
|
||||||
|
}
|
||||||
|
public void setAttr3(Long attr3)
|
||||||
|
{
|
||||||
|
this.attr3 = attr3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getAttr3()
|
||||||
|
{
|
||||||
|
return attr3;
|
||||||
|
}
|
||||||
|
public void setAttr4(Long attr4)
|
||||||
|
{
|
||||||
|
this.attr4 = attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getAttr4()
|
||||||
|
{
|
||||||
|
return attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEquipment(String equipment)
|
||||||
|
{
|
||||||
|
this.equipment = equipment;
|
||||||
|
}
|
||||||
|
public String getEquipment()
|
||||||
|
{
|
||||||
|
return equipment;
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
|
.append("processId", getProcessId())
|
||||||
|
.append("processCode", getProcessCode())
|
||||||
|
.append("processName", getProcessName())
|
||||||
|
.append("attention", getAttention())
|
||||||
|
.append("enableFlag", getEnableFlag())
|
||||||
|
.append("remark", getRemark())
|
||||||
|
.append("attr1", getAttr1())
|
||||||
|
.append("attr2", getAttr2())
|
||||||
|
.append("attr3", getAttr3())
|
||||||
|
.append("attr4", getAttr4())
|
||||||
|
.append("createBy", getCreateBy())
|
||||||
|
.append("createTime", getCreateTime())
|
||||||
|
.append("updateBy", getUpdateBy())
|
||||||
|
.append("updateTime", getUpdateTime())
|
||||||
|
.toString();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,178 @@
|
|||||||
|
package com.op.sap.domain;
|
||||||
|
|
||||||
|
import com.op.common.core.annotation.Excel;
|
||||||
|
import com.op.common.core.web.domain.BaseEntity;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产工序内容对象 pro_process_content
|
||||||
|
*
|
||||||
|
* @author yinjinlu
|
||||||
|
* @date 2022-05-12
|
||||||
|
*/
|
||||||
|
public class SapProProcessContent extends BaseEntity
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 内容ID */
|
||||||
|
private String contentId;
|
||||||
|
|
||||||
|
/** 工序ID */
|
||||||
|
@Excel(name = "工序ID")
|
||||||
|
private String processId;
|
||||||
|
|
||||||
|
/** 顺序编号 */
|
||||||
|
@Excel(name = "顺序编号")
|
||||||
|
private Integer orderNum;
|
||||||
|
|
||||||
|
/** 内容说明 */
|
||||||
|
@Excel(name = "内容说明")
|
||||||
|
private String contentText;
|
||||||
|
|
||||||
|
/** 辅助设备 */
|
||||||
|
@Excel(name = "辅助设备")
|
||||||
|
private String device;
|
||||||
|
|
||||||
|
/** 辅助材料 */
|
||||||
|
@Excel(name = "辅助材料")
|
||||||
|
private String material;
|
||||||
|
|
||||||
|
/** 材料URL */
|
||||||
|
@Excel(name = "材料URL")
|
||||||
|
private String docUrl;
|
||||||
|
|
||||||
|
/** 预留字段1 */
|
||||||
|
private String attr1;
|
||||||
|
|
||||||
|
/** 预留字段2 */
|
||||||
|
private String attr2;
|
||||||
|
|
||||||
|
/** 预留字段3 */
|
||||||
|
private Long attr3;
|
||||||
|
|
||||||
|
/** 预留字段4 */
|
||||||
|
private Long attr4;
|
||||||
|
|
||||||
|
public void setContentId(String contentId)
|
||||||
|
{
|
||||||
|
this.contentId = contentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getContentId()
|
||||||
|
{
|
||||||
|
return contentId;
|
||||||
|
}
|
||||||
|
public void setProcessId(String processId)
|
||||||
|
{
|
||||||
|
this.processId = processId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProcessId()
|
||||||
|
{
|
||||||
|
return processId;
|
||||||
|
}
|
||||||
|
public void setOrderNum(Integer orderNum)
|
||||||
|
{
|
||||||
|
this.orderNum = orderNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getOrderNum()
|
||||||
|
{
|
||||||
|
return orderNum;
|
||||||
|
}
|
||||||
|
public void setContentText(String contentText)
|
||||||
|
{
|
||||||
|
this.contentText = contentText;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getContentText()
|
||||||
|
{
|
||||||
|
return contentText;
|
||||||
|
}
|
||||||
|
public void setDevice(String device)
|
||||||
|
{
|
||||||
|
this.device = device;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDevice()
|
||||||
|
{
|
||||||
|
return device;
|
||||||
|
}
|
||||||
|
public void setMaterial(String material)
|
||||||
|
{
|
||||||
|
this.material = material;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMaterial()
|
||||||
|
{
|
||||||
|
return material;
|
||||||
|
}
|
||||||
|
public void setDocUrl(String docUrl)
|
||||||
|
{
|
||||||
|
this.docUrl = docUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDocUrl()
|
||||||
|
{
|
||||||
|
return docUrl;
|
||||||
|
}
|
||||||
|
public void setAttr1(String attr1)
|
||||||
|
{
|
||||||
|
this.attr1 = attr1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr1()
|
||||||
|
{
|
||||||
|
return attr1;
|
||||||
|
}
|
||||||
|
public void setAttr2(String attr2)
|
||||||
|
{
|
||||||
|
this.attr2 = attr2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr2()
|
||||||
|
{
|
||||||
|
return attr2;
|
||||||
|
}
|
||||||
|
public void setAttr3(Long attr3)
|
||||||
|
{
|
||||||
|
this.attr3 = attr3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getAttr3()
|
||||||
|
{
|
||||||
|
return attr3;
|
||||||
|
}
|
||||||
|
public void setAttr4(Long attr4)
|
||||||
|
{
|
||||||
|
this.attr4 = attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getAttr4()
|
||||||
|
{
|
||||||
|
return attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
|
.append("contentId", getContentId())
|
||||||
|
.append("processId", getProcessId())
|
||||||
|
.append("orderNum", getOrderNum())
|
||||||
|
.append("contentText", getContentText())
|
||||||
|
.append("device", getDevice())
|
||||||
|
.append("material", getMaterial())
|
||||||
|
.append("docUrl", getDocUrl())
|
||||||
|
.append("remark", getRemark())
|
||||||
|
.append("attr1", getAttr1())
|
||||||
|
.append("attr2", getAttr2())
|
||||||
|
.append("attr3", getAttr3())
|
||||||
|
.append("attr4", getAttr4())
|
||||||
|
.append("createBy", getCreateBy())
|
||||||
|
.append("createTime", getCreateTime())
|
||||||
|
.append("updateBy", getUpdateBy())
|
||||||
|
.append("updateTime", getUpdateTime())
|
||||||
|
.toString();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,319 @@
|
|||||||
|
package com.op.sap.domain;
|
||||||
|
|
||||||
|
import com.op.common.core.annotation.Excel;
|
||||||
|
import com.op.common.core.web.domain.BaseEntity;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 工艺路线对象 pro_route
|
||||||
|
*
|
||||||
|
* @author yinjinlu
|
||||||
|
* @date 2022-05-12
|
||||||
|
*/
|
||||||
|
public class SapProRoute extends BaseEntity
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 工艺路线ID */
|
||||||
|
private String routeId;
|
||||||
|
|
||||||
|
/** 工艺路线编号 */
|
||||||
|
@Excel(name = "工艺路线编号")
|
||||||
|
private String routeCode;
|
||||||
|
|
||||||
|
/** 工艺路线名称 */
|
||||||
|
@Excel(name = "工艺路线名称")
|
||||||
|
private String routeName;
|
||||||
|
|
||||||
|
/** 工艺路线说明 */
|
||||||
|
@Excel(name = "工艺路线说明")
|
||||||
|
private String routeDesc;
|
||||||
|
|
||||||
|
/** 是否启用 */
|
||||||
|
@Excel(name = "是否启用")
|
||||||
|
private String enableFlag;
|
||||||
|
|
||||||
|
/** 是否需要首检 */
|
||||||
|
@Excel(name = "是否需要首检")
|
||||||
|
private String needCheck;
|
||||||
|
|
||||||
|
/** 预留字段1 */
|
||||||
|
private String attr1;
|
||||||
|
|
||||||
|
/** 预留字段2 */
|
||||||
|
private String attr2;
|
||||||
|
|
||||||
|
/** 预留字段3 */
|
||||||
|
private String attr3;
|
||||||
|
|
||||||
|
/** 预留字段4 */
|
||||||
|
private String attr4;
|
||||||
|
|
||||||
|
private String tecMan;
|
||||||
|
|
||||||
|
private String tecManUnit;
|
||||||
|
private String tecMachine;
|
||||||
|
private String tecMachineUnit;
|
||||||
|
private String tecDepreciation;
|
||||||
|
private String tecDepreciationUnit;
|
||||||
|
private String tecOther;
|
||||||
|
private String tecOtherUnit;
|
||||||
|
private String tecConfAcivity5;
|
||||||
|
private String tecConfAcivity5Unit;
|
||||||
|
private String tecConfAcivity6;
|
||||||
|
private String tecConfAcivity6Unit;
|
||||||
|
|
||||||
|
private String fileList;
|
||||||
|
private List<SapBaseFile> files;
|
||||||
|
|
||||||
|
private List<String> idList;
|
||||||
|
|
||||||
|
private String routeVersion;
|
||||||
|
|
||||||
|
public String getRouteId() {
|
||||||
|
return routeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRouteId(String routeId) {
|
||||||
|
this.routeId = routeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRouteCode() {
|
||||||
|
return routeCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRouteCode(String routeCode) {
|
||||||
|
this.routeCode = routeCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRouteName() {
|
||||||
|
return routeName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRouteName(String routeName) {
|
||||||
|
this.routeName = routeName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRouteDesc() {
|
||||||
|
return routeDesc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRouteDesc(String routeDesc) {
|
||||||
|
this.routeDesc = routeDesc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEnableFlag() {
|
||||||
|
return enableFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEnableFlag(String enableFlag) {
|
||||||
|
this.enableFlag = enableFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getNeedCheck() {
|
||||||
|
return needCheck;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNeedCheck(String needCheck) {
|
||||||
|
this.needCheck = needCheck;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr1() {
|
||||||
|
return attr1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAttr1(String attr1) {
|
||||||
|
this.attr1 = attr1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr2() {
|
||||||
|
return attr2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAttr2(String attr2) {
|
||||||
|
this.attr2 = attr2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr3() {
|
||||||
|
return attr3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAttr3(String attr3) {
|
||||||
|
this.attr3 = attr3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr4() {
|
||||||
|
return attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAttr4(String attr4) {
|
||||||
|
this.attr4 = attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecMan() {
|
||||||
|
return tecMan;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecMan(String tecMan) {
|
||||||
|
this.tecMan = tecMan;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecManUnit() {
|
||||||
|
return tecManUnit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecManUnit(String tecManUnit) {
|
||||||
|
this.tecManUnit = tecManUnit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecMachine() {
|
||||||
|
return tecMachine;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecMachine(String tecMachine) {
|
||||||
|
this.tecMachine = tecMachine;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecMachineUnit() {
|
||||||
|
return tecMachineUnit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecMachineUnit(String tecMachineUnit) {
|
||||||
|
this.tecMachineUnit = tecMachineUnit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecDepreciation() {
|
||||||
|
return tecDepreciation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecDepreciation(String tecDepreciation) {
|
||||||
|
this.tecDepreciation = tecDepreciation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecDepreciationUnit() {
|
||||||
|
return tecDepreciationUnit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecDepreciationUnit(String tecDepreciationUnit) {
|
||||||
|
this.tecDepreciationUnit = tecDepreciationUnit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecOther() {
|
||||||
|
return tecOther;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecOther(String tecOther) {
|
||||||
|
this.tecOther = tecOther;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecOtherUnit() {
|
||||||
|
return tecOtherUnit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecOtherUnit(String tecOtherUnit) {
|
||||||
|
this.tecOtherUnit = tecOtherUnit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecConfAcivity5() {
|
||||||
|
return tecConfAcivity5;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecConfAcivity5(String tecConfAcivity5) {
|
||||||
|
this.tecConfAcivity5 = tecConfAcivity5;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecConfAcivity5Unit() {
|
||||||
|
return tecConfAcivity5Unit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecConfAcivity5Unit(String tecConfAcivity5Unit) {
|
||||||
|
this.tecConfAcivity5Unit = tecConfAcivity5Unit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecConfAcivity6() {
|
||||||
|
return tecConfAcivity6;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecConfAcivity6(String tecConfAcivity6) {
|
||||||
|
this.tecConfAcivity6 = tecConfAcivity6;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTecConfAcivity6Unit() {
|
||||||
|
return tecConfAcivity6Unit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTecConfAcivity6Unit(String tecConfAcivity6Unit) {
|
||||||
|
this.tecConfAcivity6Unit = tecConfAcivity6Unit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFileList() {
|
||||||
|
return fileList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFileList(String fileList) {
|
||||||
|
this.fileList = fileList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<SapBaseFile> getFiles() {
|
||||||
|
return files;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFiles(List<SapBaseFile> files) {
|
||||||
|
this.files = files;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<String> getIdList() {
|
||||||
|
return idList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIdList(List<String> idList) {
|
||||||
|
this.idList = idList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRouteVersion() {
|
||||||
|
return routeVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRouteVersion(String routeVersion) {
|
||||||
|
this.routeVersion = routeVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "SapProRoute{" +
|
||||||
|
"routeId='" + routeId + '\'' +
|
||||||
|
", routeCode='" + routeCode + '\'' +
|
||||||
|
", routeName='" + routeName + '\'' +
|
||||||
|
", routeDesc='" + routeDesc + '\'' +
|
||||||
|
", enableFlag='" + enableFlag + '\'' +
|
||||||
|
", needCheck='" + needCheck + '\'' +
|
||||||
|
", attr1='" + attr1 + '\'' +
|
||||||
|
", attr2='" + attr2 + '\'' +
|
||||||
|
", attr3='" + attr3 + '\'' +
|
||||||
|
", attr4='" + attr4 + '\'' +
|
||||||
|
", tecMan='" + tecMan + '\'' +
|
||||||
|
", tecManUnit='" + tecManUnit + '\'' +
|
||||||
|
", tecMachine='" + tecMachine + '\'' +
|
||||||
|
", tecMachineUnit='" + tecMachineUnit + '\'' +
|
||||||
|
", tecDepreciation='" + tecDepreciation + '\'' +
|
||||||
|
", tecDepreciationUnit='" + tecDepreciationUnit + '\'' +
|
||||||
|
", tecOther='" + tecOther + '\'' +
|
||||||
|
", tecOtherUnit='" + tecOtherUnit + '\'' +
|
||||||
|
", tecConfAcivity5='" + tecConfAcivity5 + '\'' +
|
||||||
|
", tecConfAcivity5Unit='" + tecConfAcivity5Unit + '\'' +
|
||||||
|
", tecConfAcivity6='" + tecConfAcivity6 + '\'' +
|
||||||
|
", tecConfAcivity6Unit='" + tecConfAcivity6Unit + '\'' +
|
||||||
|
", fileList='" + fileList + '\'' +
|
||||||
|
", files=" + files +
|
||||||
|
", idList=" + idList +
|
||||||
|
", routeVersion='" + routeVersion + '\'' +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue