Commit 69b81aa8 authored by xiaoguang.xu's avatar xiaoguang.xu

Merge branch 'baseEntity' into contactIsolate

# Conflicts:
#	src/main/java/cn/quantgroup/xyqb/entity/Contact.java
parent 2e2bd9da
...@@ -80,7 +80,7 @@ public class ContactController { ...@@ -80,7 +80,7 @@ public class ContactController {
contact.setUserId(userId); contact.setUserId(userId);
contact.setBizType(contactSaveDto.getBizType()); contact.setBizType(contactSaveDto.getBizType());
contact.setCreatedAt(now); contact.setCreatedAt(now);
contact.setUpdateAt(now); contact.setUpdatedAt(now);
}); });
if (contacts.isEmpty()) { if (contacts.isEmpty()) {
return JsonResult.buildErrorStateResult("数据格式错误", null); return JsonResult.buildErrorStateResult("数据格式错误", null);
......
...@@ -11,12 +11,8 @@ import lombok.NoArgsConstructor; ...@@ -11,12 +11,8 @@ import lombok.NoArgsConstructor;
import javax.persistence.Column; import javax.persistence.Column;
import javax.persistence.Entity; import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table; import javax.persistence.Table;
import java.io.Serializable; import java.io.Serializable;
import java.sql.Timestamp;
/** /**
* Created by 11 on 2016/12/30. * Created by 11 on 2016/12/30.
......
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