|
@@ -1,5 +1,7 @@
|
|
|
package com.ematou.wxbase.entity;
|
|
|
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
import java.sql.Timestamp;
|
|
|
|
|
|
/**
|
|
@@ -7,77 +9,18 @@ import java.sql.Timestamp;
|
|
|
* @version 1.0
|
|
|
* 2021-04-30 11:35
|
|
|
*/
|
|
|
+@Data
|
|
|
public class OperationRecord {
|
|
|
|
|
|
- private Integer opId;
|
|
|
-
|
|
|
- private String appCode;
|
|
|
-
|
|
|
- private String createrSn;
|
|
|
-
|
|
|
- private String createTime;
|
|
|
-
|
|
|
- private String moderSn;
|
|
|
-
|
|
|
- private String modTime;
|
|
|
-
|
|
|
- private Timestamp tstm;
|
|
|
-
|
|
|
- public Integer getOpId() {
|
|
|
- return opId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOpId(Integer opId) {
|
|
|
- this.opId = opId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAppCode() {
|
|
|
- return appCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAppCode(String appCode) {
|
|
|
- this.appCode = appCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreaterSn() {
|
|
|
- return createrSn;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreaterSn(String createrSn) {
|
|
|
- this.createrSn = createrSn;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(String createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public String getModerSn() {
|
|
|
- return moderSn;
|
|
|
- }
|
|
|
-
|
|
|
- public void setModerSn(String moderSn) {
|
|
|
- this.moderSn = moderSn;
|
|
|
- }
|
|
|
-
|
|
|
- public String getModTime() {
|
|
|
- return modTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setModTime(String modTime) {
|
|
|
- this.modTime = modTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Timestamp getTstm() {
|
|
|
- return tstm;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTstm(Timestamp tstm) {
|
|
|
- this.tstm = tstm;
|
|
|
- }
|
|
|
+ private Integer opId;// 主键
|
|
|
+ private String appCode;// 应用编码
|
|
|
+ private String merchSn;// 商户号
|
|
|
+ private String tokenType;// token 类型, 0:微信 token,1:E证通 token
|
|
|
+ private String createrSn;// 创建人编号
|
|
|
+ private String createTime;// 创建时间
|
|
|
+ private String moderSn;// 修改人编号
|
|
|
+ private String modTime;// 修改时间
|
|
|
+ private Timestamp tstm;// 时间戳
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|