修复specsId bug

This commit is contained in:
wulin 2020-09-27 15:11:37 +08:00
parent 469a9f7098
commit 2b4e7023d3
2 changed files with 25 additions and 1 deletions

View File

@ -434,6 +434,30 @@ public class EquipmentInfo implements java.io.Serializable {
this.count = count;
}
public Long getTypeId() {
return typeId;
}
public void setTypeId(Long typeId) {
this.typeId = typeId;
}
public Long getBrandId() {
return brandId;
}
public void setBrandId(Long brandId) {
this.brandId = brandId;
}
public Long getSpecsId() {
return specsId;
}
public void setSpecsId(Long specsId) {
this.specsId = specsId;
}
@Override
public String toString() {
return "EquipmentInfo{" +

View File

@ -168,7 +168,7 @@
sai_id = #{saiId},
type_id=#{typeId},
brand_id=#{brandId},
specs_id=#{specsId]},
specs_id=#{specsId},
count = #{count}
,gmt_modified = now()
where id = #{id}