update - 质检记录插入班组字段

master
wangh 9 months ago
parent 4116e08753
commit f535efc23b

@ -92,7 +92,7 @@ public class PdaApiController {
inspection.setInspectorCode(checkInfo.getUserName());
inspection.setInspectorTime(new Date());
inspection.setStationCode(checkInfo.getStationCode());
inspection.setGroupCode(checkInfo.getTeamName());
inspection.setGroupCode(checkInfo.getTeamCode());
assert list != null;
if (!list.isEmpty()) {
CheckInfoDto.DefectBeen defectBeen = list.get(i);

@ -13,17 +13,17 @@ public class CheckInfoDto {
private List<DefectBeen> list;//缺陷列表
private String stationCode;
private String userName;
private String teamName;
private String teamCode;
public String getMeasure() {
return measure;
}
public String getTeamName() {
return teamName;
public String getTeamCode() {
return teamCode;
}
public void setTeamName(String teamName) {
this.teamName = teamName;
public void setTeamCode(String teamCode) {
this.teamCode = teamCode;
}
public void setMeasure(String measure) {

Loading…
Cancel
Save