Commit b40469ce by guojuxing

tapd缺陷接口,integer改成long

parent dd50a817
...@@ -17,7 +17,7 @@ public class TapdCustomFieldConfig implements Serializable{ ...@@ -17,7 +17,7 @@ public class TapdCustomFieldConfig implements Serializable{
/** /**
* 自定义字段配置的ID * 自定义字段配置的ID
*/ */
private Integer id; private Long id;
/** /**
* 所属项目ID * 所属项目ID
...@@ -59,11 +59,11 @@ public class TapdCustomFieldConfig implements Serializable{ ...@@ -59,11 +59,11 @@ public class TapdCustomFieldConfig implements Serializable{
*/ */
private String sort; private String sort;
public Integer getId() { public Long getId() {
return id; return id;
} }
public void setId(Integer id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
......
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