Commit b0cb1e3c authored by xixinzhao's avatar xixinzhao

检查项保存修改

parent bc3c95c7
......@@ -225,7 +225,7 @@ public class InputItem extends BasicEntity {
* 检查类别IDS
*/
@Column(name = "item_type_classify_ids")
private Integer itemTypeClassifyIds;
private String itemTypeClassifyIds;
public Integer getItemStart() {
return itemStart;
......@@ -515,11 +515,11 @@ public class InputItem extends BasicEntity {
this.checkTypeId = checkTypeId;
}
public Integer getItemTypeClassifyIds() {
public String getItemTypeClassifyIds() {
return itemTypeClassifyIds;
}
public void setItemTypeClassifyIds(Integer itemTypeClassifyIds) {
public void setItemTypeClassifyIds(String itemTypeClassifyIds) {
this.itemTypeClassifyIds = itemTypeClassifyIds;
}
}
\ No newline at end of file
......@@ -31,6 +31,7 @@ public class InputItemParam {
private String itemTypeClassify;
private String itemLevel;
private String itemStart;
private String itemTypeClassifyIds;
public String getItemStart() {
return itemStart;
......@@ -227,4 +228,11 @@ public class InputItemParam {
}
public String getItemTypeClassifyIds() {
return itemTypeClassifyIds;
}
public void setItemTypeClassifyIds(String itemTypeClassifyIds) {
this.itemTypeClassifyIds = itemTypeClassifyIds;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment