Commit 66796946 authored by lcl's avatar lcl

添加拜访时间字段

parent f2340724
...@@ -35,6 +35,10 @@ public class CustomerFollowRecord implements Serializable { ...@@ -35,6 +35,10 @@ public class CustomerFollowRecord implements Serializable {
* 拜访方式(visit_mode_type) * 拜访方式(visit_mode_type)
*/ */
private String visitMode; private String visitMode;
/**
* 拜访时间
*/
private Date visitTime;
/** /**
* 下次拜访时间 * 下次拜访时间
*/ */
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<mapper namespace="com.dsk.system.mapper.CustomerFollowRecordMapper"> <mapper namespace="com.dsk.system.mapper.CustomerFollowRecordMapper">
<sql id="Base_Bean"> <sql id="Base_Bean">
cfr.id, cfr.customer_id, cfr.user_id, cfr.visit_mode, cfr.next_visit_time, cfr.name, cfr.position, cfr.id, cfr.customer_id, cfr.user_id, cfr.visit_mode, cfr.visit_time, cfr.next_visit_time, cfr.name, cfr.position,
cfr.content, cfr.create_time cfr.content, cfr.create_time
</sql> </sql>
......
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