parent
9f428e2bd8
commit
2f1abf902a
@ -0,0 +1,91 @@
|
|||||||
|
package au.com.royalpay.payment.manage.merchants.beans.mongo;
|
||||||
|
|
||||||
|
import org.springframework.data.mongodb.core.mapping.Document;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Document(collection = "client_config_log") // here is solution
|
||||||
|
public class ClientConfigLog {
|
||||||
|
|
||||||
|
private long id;
|
||||||
|
private int clientId;
|
||||||
|
private String business;
|
||||||
|
private String userType;
|
||||||
|
private String userId;
|
||||||
|
private String userName;
|
||||||
|
private String originData;
|
||||||
|
private String newData;
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
public long getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(long id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getClientId() {
|
||||||
|
return clientId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setClientId(int clientId) {
|
||||||
|
this.clientId = clientId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBusiness() {
|
||||||
|
return business;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBusiness(String business) {
|
||||||
|
this.business = business;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUserType() {
|
||||||
|
return userType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserType(String userType) {
|
||||||
|
this.userType = userType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUserId() {
|
||||||
|
return userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserId(String userId) {
|
||||||
|
this.userId = userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUserName() {
|
||||||
|
return userName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserName(String userName) {
|
||||||
|
this.userName = userName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getOriginData() {
|
||||||
|
return originData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOriginData(String originData) {
|
||||||
|
this.originData = originData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getNewData() {
|
||||||
|
return newData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNewData(String newData) {
|
||||||
|
this.newData = newData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getCreateTime() {
|
||||||
|
return createTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCreateTime(Date createTime) {
|
||||||
|
this.createTime = createTime;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue