|
@@ -5,8 +5,11 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.jeeplus.core.domain.BaseEntity;
|
|
|
import com.jeeplus.core.query.Query;
|
|
|
import com.jeeplus.core.query.QueryType;
|
|
|
+import com.jeeplus.form.constant.TableColumn;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* 客户管理Entity
|
|
|
* @author 丁旭
|
|
@@ -19,7 +22,7 @@ public class WorkClientInfo extends BaseEntity {
|
|
|
/**
|
|
|
* 客户名称
|
|
|
*/
|
|
|
- @Query()
|
|
|
+ @Query(tableColumn = "a.name")
|
|
|
private String name;
|
|
|
|
|
|
/**
|
|
@@ -35,16 +38,19 @@ public class WorkClientInfo extends BaseEntity {
|
|
|
/**
|
|
|
* 客户性质
|
|
|
*/
|
|
|
+ @Query
|
|
|
private String companyType;
|
|
|
|
|
|
/**
|
|
|
* 客户行业
|
|
|
*/
|
|
|
+ @Query
|
|
|
private String companyIndustry;
|
|
|
|
|
|
/**
|
|
|
* 客户类型
|
|
|
*/
|
|
|
+ @Query
|
|
|
private String clientType;
|
|
|
|
|
|
/**
|
|
@@ -126,6 +132,7 @@ public class WorkClientInfo extends BaseEntity {
|
|
|
/**
|
|
|
* 统一社会信用代码
|
|
|
*/
|
|
|
+ @Query
|
|
|
private String uscCode;
|
|
|
|
|
|
/**
|
|
@@ -137,5 +144,8 @@ public class WorkClientInfo extends BaseEntity {
|
|
|
* 代表方(以逗号分割)
|
|
|
*/
|
|
|
@TableField(exist = false)
|
|
|
+ @Query(type = QueryType.EQ, tableColumn = "f.job_type_id")
|
|
|
private String deputy;
|
|
|
+
|
|
|
+ private String[] createDates;
|
|
|
}
|