增加cacc_id字段
This commit is contained in:
parent
a047b76cc0
commit
fa16abe4fb
|
@ -82,7 +82,6 @@ public class BaseEntity implements Serializable {
|
||||||
private String dataSourceCode;
|
private String dataSourceCode;
|
||||||
private String acc_name;
|
private String acc_name;
|
||||||
private String cacc_id;
|
private String cacc_id;
|
||||||
|
|
||||||
public static long getSerialVersionUID() {
|
public static long getSerialVersionUID() {
|
||||||
return serialVersionUID;
|
return serialVersionUID;
|
||||||
}
|
}
|
||||||
|
@ -240,10 +239,6 @@ public class BaseEntity implements Serializable {
|
||||||
this.dataSourceCode = dataSourceCode;
|
this.dataSourceCode = dataSourceCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
public BaseEntity() {
|
|
||||||
this.dataSourceCode = "master";
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAcc_name() {
|
public String getAcc_name() {
|
||||||
return acc_name;
|
return acc_name;
|
||||||
}
|
}
|
||||||
|
@ -252,6 +247,10 @@ public class BaseEntity implements Serializable {
|
||||||
this.acc_name = acc_name;
|
this.acc_name = acc_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public BaseEntity() {
|
||||||
|
this.dataSourceCode = "master";
|
||||||
|
}
|
||||||
|
|
||||||
public Long getSorts() {
|
public Long getSorts() {
|
||||||
return sorts;
|
return sorts;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue