|
|
@@ -6,14 +6,7 @@ import com.uas.platform.b2c.core.utils.JacksonUtils;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
-import javax.persistence.Column;
|
|
|
-import javax.persistence.Entity;
|
|
|
-import javax.persistence.EnumType;
|
|
|
-import javax.persistence.Enumerated;
|
|
|
-import javax.persistence.GeneratedValue;
|
|
|
-import javax.persistence.Id;
|
|
|
-import javax.persistence.Table;
|
|
|
-import javax.persistence.Transient;
|
|
|
+import javax.persistence.*;
|
|
|
import java.util.Collections;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
@@ -142,7 +135,7 @@ public class StoreApply {
|
|
|
* 公司信息JSON字符串
|
|
|
*/
|
|
|
@JsonIgnore
|
|
|
- @Column(name = "apply_store_enterprise", length = 2000)
|
|
|
+ @Column(name = "apply_store_enterprise", length = 2000,columnDefinition="TEXT")
|
|
|
private String enterpriseJson;
|
|
|
|
|
|
/**
|
|
|
@@ -154,7 +147,7 @@ public class StoreApply {
|
|
|
@Column(name = "apply_en_type")
|
|
|
private String enType;
|
|
|
|
|
|
- @Column(name = "apply_en_qualification", length = 4000)
|
|
|
+ @Column(name = "apply_en_qualification", length = 4000,columnDefinition="TEXT")
|
|
|
private String enQualification;
|
|
|
|
|
|
//----------------------------------------------------- 资质信息
|
|
|
@@ -163,7 +156,7 @@ public class StoreApply {
|
|
|
* 资质信息JSON
|
|
|
*/
|
|
|
@JsonIgnore
|
|
|
- @Column(name = "apply_qualifications", length = 4000)
|
|
|
+ @Column(name = "apply_qualifications", length = 4000,columnDefinition="TEXT")
|
|
|
private String qualificationsJson;
|
|
|
|
|
|
/**
|