Commit e13f5bc2 by Java-聂换换

改变Id的类型

parent e038195d
......@@ -22,15 +22,15 @@ public abstract class BaseEntity implements Serializable,Cloneable {
*/
private static final long serialVersionUID = 5983695342897355824L;
@JSONField(serialize=false)
protected Long id;
protected String id;
@JSONField(serialize=false)
protected String dbprefix;
public Long getId() {
public String getId() {
return id;
}
public void setId(Long id) {
public void setId(String id) {
this.id = id;
}
public String getDbprefix() {
......
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