7 changed files with 270 additions and 1 deletions
-
35src/main/java/com/spring/modules/sampleManagement/controller/TechnicalSpecificationController.java
-
39src/main/java/com/spring/modules/sampleManagement/dao/TechnicalSpecificationMapper.java
-
9src/main/java/com/spring/modules/sampleManagement/data/PlmTechnicalSpecificationTeamData.java
-
69src/main/java/com/spring/modules/sampleManagement/entity/PlmTechnicalSpecificationTeam.java
-
70src/main/java/com/spring/modules/sampleManagement/service/Impl/TechnicalSpecificationServiceImpl.java
-
24src/main/java/com/spring/modules/sampleManagement/service/TechnicalSpecificationService.java
-
25src/main/resources/mapper/sampleManagement/TechnicalSpecificationMapper.xml
@ -0,0 +1,9 @@ |
|||
package com.spring.modules.sampleManagement.data; |
|||
|
|||
import com.spring.modules.sampleManagement.entity.PlmTechnicalSpecificationTeam; |
|||
import org.apache.ibatis.type.Alias; |
|||
|
|||
@Alias("PlmTechnicalSpecificationTeamData") |
|||
public class PlmTechnicalSpecificationTeamData extends PlmTechnicalSpecificationTeam { |
|||
|
|||
} |
|||
@ -0,0 +1,69 @@ |
|||
package com.spring.modules.sampleManagement.entity; |
|||
|
|||
public class PlmTechnicalSpecificationTeam { |
|||
/** |
|||
* 工厂编码 |
|||
*/ |
|||
private String site; |
|||
|
|||
/** |
|||
* 参数卡编码 |
|||
*/ |
|||
private String codeNo; |
|||
|
|||
/** |
|||
* 员工编码 |
|||
*/ |
|||
private String operatorId; |
|||
|
|||
/** |
|||
* 角色 |
|||
*/ |
|||
private String type; |
|||
|
|||
/** |
|||
* |
|||
*/ |
|||
private Integer id; |
|||
|
|||
public String getSite() { |
|||
return site; |
|||
} |
|||
|
|||
public void setSite(String site) { |
|||
this.site = site; |
|||
} |
|||
|
|||
public String getCodeNo() { |
|||
return codeNo; |
|||
} |
|||
|
|||
public void setCodeNo(String codeNo) { |
|||
this.codeNo = codeNo; |
|||
} |
|||
|
|||
public String getOperatorId() { |
|||
return operatorId; |
|||
} |
|||
|
|||
public void setOperatorId(String operatorId) { |
|||
this.operatorId = operatorId; |
|||
} |
|||
|
|||
public String getType() { |
|||
return type; |
|||
} |
|||
|
|||
public void setType(String type) { |
|||
this.type = type; |
|||
} |
|||
|
|||
public Integer getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Integer id) { |
|||
this.id = id; |
|||
} |
|||
} |
|||
|
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue