Commit fde36f5c by fudahua

同步处理 日志

parent 1015d07c
...@@ -59,6 +59,8 @@ public class PreDealLogInfoDTO implements Serializable { ...@@ -59,6 +59,8 @@ public class PreDealLogInfoDTO implements Serializable {
*/ */
private Integer statusFlag; private Integer statusFlag;
private String reason;
/** /**
* *
*/ */
...@@ -73,6 +75,14 @@ public class PreDealLogInfoDTO implements Serializable { ...@@ -73,6 +75,14 @@ public class PreDealLogInfoDTO implements Serializable {
*/ */
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getDataCode() { public String getDataCode() {
return dataCode; return dataCode;
} }
......
...@@ -61,6 +61,16 @@ public class TabHaobanPreDealLog implements Serializable { ...@@ -61,6 +61,16 @@ public class TabHaobanPreDealLog implements Serializable {
private String dataContent; private String dataContent;
private String reason;
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getDataContent() { public String getDataContent() {
return dataContent; return dataContent;
} }
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
<result column="enterprise_id" jdbcType="VARCHAR" property="enterpriseId"/> <result column="enterprise_id" jdbcType="VARCHAR" property="enterpriseId"/>
<result column="data_id" jdbcType="VARCHAR" property="dataId"/> <result column="data_id" jdbcType="VARCHAR" property="dataId"/>
<result column="data_content" jdbcType="VARCHAR" property="dataContent"/> <result column="data_content" jdbcType="VARCHAR" property="dataContent"/>
<result column="reason" jdbcType="VARCHAR" property="reason"/>
<result column="p_data_id" jdbcType="VARCHAR" property="pDataId"/> <result column="p_data_id" jdbcType="VARCHAR" property="pDataId"/>
<result column="task_id" jdbcType="VARCHAR" property="taskId"/> <result column="task_id" jdbcType="VARCHAR" property="taskId"/>
<result column="data_type" jdbcType="INTEGER" property="dataType"/> <result column="data_type" jdbcType="INTEGER" property="dataType"/>
...@@ -15,7 +16,7 @@ ...@@ -15,7 +16,7 @@
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/> <result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id, wx_enterprise_id,enterprise_id, data_id, p_data_id, task_id, data_type, status_flag, create_time, id, wx_enterprise_id,enterprise_id, data_id, p_data_id, task_id, data_type, status_flag,reason, create_time,
update_time update_time
</sql> </sql>
<sql id="Base_Column_List_data"> <sql id="Base_Column_List_data">
......
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