修复specsId bug
This commit is contained in:
parent
469a9f7098
commit
2b4e7023d3
@ -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{" +
|
||||
|
||||
@ -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}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user