Browse Source

增加字段

master
赵宏斌 6 days ago
parent
commit
175697c3db
  1. 18
      src/main/java/com/spring/modules/sampleManagement/data/PlmTechnicalSpecificationSheetData.java
  2. 8
      src/main/resources/mapper/sampleManagement/TechnicalSpecificationMapper.xml

18
src/main/java/com/spring/modules/sampleManagement/data/PlmTechnicalSpecificationSheetData.java

@ -96,6 +96,24 @@ public class PlmTechnicalSpecificationSheetData extends PlmTechnicalSpecificatio
private List<String> qualityEngineerList;
private String qualityEngineer;
private String qualityEngineerNo;
private String otherCertification;
private String partCategory;
public String getPartCategory() {
return partCategory;
}
public void setPartCategory(String partCategory) {
this.partCategory = partCategory;
}
public String getOtherCertification() {
return otherCertification;
}
public void setOtherCertification(String otherCertification) {
this.otherCertification = otherCertification;
}
public String getQualityEngineer() {
return qualityEngineer;

8
src/main/resources/mapper/sampleManagement/TechnicalSpecificationMapper.xml

@ -392,7 +392,8 @@
a.slitting_tolerance,
a.url_file,
a.radius,
a.sheet
a.sheet,
a.partCategory
FROM plm_technical_specification_sheet a
left join view_Project_final_Part b on a.site = b.site and a.project_id = b.project_id and a.test_part_no = b.test_part_no
left join plm_project_info c on a.site = c.site and a.project_id = c.project_id
@ -516,7 +517,8 @@
relevance_part_no = #{relevancePartNo},
ecn_need_change_drawing = #{ecnNeedChangeDrawing},
shop_order = #{shopOrder},
copy_flag = #{copyFlag}
copy_flag = #{copyFlag},
partCategory = #{partCategory}
where site = #{site} and code_no = #{codeNo}
</update>
@ -542,6 +544,7 @@
a.customerRevNo,
a.materialNumber,
a.certification,
a.otherCertification,
a.customerRemark,
a.projectRemark,
b.project_id,
@ -564,6 +567,7 @@
update_date=GetDate(),
update_by=#{updateBy},
certification=#{certification},
otherCertification=#{otherCertification},
customerRevNo=#{customerRevNo},
materialNumber=#{materialNumber},
customerRemark=#{customerRemark},

Loading…
Cancel
Save