Commit 0e8b4e6a by 徐高华

刷新离职继承的数据改成update_time

parent adfcfb24
......@@ -26,7 +26,7 @@ public class MaidianLogServiceImpl implements MaidianLogService{
@Override
public void insert(MaidianLogDTO maidianLogDTO) {
TabHaobanMaidianLog tab = EntityUtil.changeEntityByJSON(TabHaobanMaidianLog.class, maidianLogDTO);
//tab.setMaidianId(UniqueIdUtils.uniqueLong());
tab.setMaidianId(UniqueIdUtils.uniqueLong());
tab.setCreateTime(new Date());
tab.setUpdateTime(tab.getCreateTime());
mapper.insert(tab);
......
......@@ -205,7 +205,7 @@
<include refid="Base_Column_List"/>
from tab_haoban_handover_transfer
where wx_enterprise_id=#{wxEnterpriseId}
and create_time > #{date}
and update_time > #{date}
and status_flag=1
</select>
......
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