Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
8timerv2
8timerapiv200
Commits
7795245e
Commit
7795245e
authored
4 years ago
by
邓实川
Committed by
chenzg
3 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户管理实体、持久层、接口控制器
parent
88d554b2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
498 additions
and
37 deletions
+498
-37
src/main/java/cn/timer/api/bean/clazz/ClientSourceClass.java
+57
-0
src/main/java/cn/timer/api/bean/clazz/ClientTypeClass.java
+57
-0
src/main/java/cn/timer/api/bean/clazz/IndustryClass.java
+14
-0
src/main/java/cn/timer/api/bean/clazz/SysRegion.java
+1
-1
src/main/java/cn/timer/api/bean/crm/CrmBusinessGroup.java
+7
-19
src/main/java/cn/timer/api/bean/crm/CrmClientAssociate.java
+60
-0
src/main/java/cn/timer/api/bean/crm/CrmClientContacts.java
+10
-4
src/main/java/cn/timer/api/bean/crm/CrmClientData.java
+58
-13
src/main/java/cn/timer/api/bean/crm/CrmClientFollow.java
+90
-0
src/main/java/cn/timer/api/controller/crm/CrmController.java
+0
-0
src/main/java/cn/timer/api/controller/yggl/YgglController.java
+0
-0
src/main/java/cn/timer/api/dao/clazz/CilentSourceClassMapper.java
+24
-0
src/main/java/cn/timer/api/dao/clazz/CilentTypeClassMapper.java
+24
-0
src/main/java/cn/timer/api/dao/clazz/IndustryClassMapper.java
+24
-0
src/main/java/cn/timer/api/dao/crm/CrmClientAssociatesMapper.java
+24
-0
src/main/java/cn/timer/api/dao/crm/CrmClientFollowMapper.java
+24
-0
src/main/java/cn/timer/api/dao/crm/CrmSeaRuleMapper.java
+24
-0
No files found.
src/main/java/cn/timer/api/bean/clazz/ClientSourceClass.java
0 → 100644
View file @
7795245e
/**
* <p>Title: IndustryClass.java</p>
* <p>Description: </p>
* @author dsc
* @date 2020年6月5日
* @version 1.0
*/
package
cn
.
timer
.
api
.
bean
.
clazz
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.Id
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
/**
* <p>
* Title: CilentSourceClass.java
* </p>
* <p>
* Description:
* </p>
*
* @author dsc
* @date 2020年6月5日
* @version 1.0
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ApiModel
(
"客户来源字典表(1.0)"
)
public
class
ClientSourceClass
extends
Model
<
ClientSourceClass
>
{
private
static
final
long
serialVersionUID
=
2504935692833727870L
;
@Id
@GeneratedValue
@TableId
(
type
=
IdType
.
AUTO
)
@ApiModelProperty
(
value
=
"主键"
,
example
=
"1"
)
private
Integer
id
;
@ApiModelProperty
(
value
=
"来源名"
,
example
=
"行业"
)
private
String
name
;
@ApiModelProperty
(
value
=
"企业id"
,
example
=
"企业"
)
private
Integer
orgCode
;
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/clazz/ClientTypeClass.java
0 → 100644
View file @
7795245e
/**
* <p>Title: IndustryClass.java</p>
* <p>Description: </p>
* @author dsc
* @date 2020年6月5日
* @version 1.0
*/
package
cn
.
timer
.
api
.
bean
.
clazz
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.Id
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
/**
* <p>
* Title: CilentTypeClass.java
* </p>
* <p>
* Description:
* </p>
*
* @author dsc
* @date 2020年6月5日
* @version 1.0
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ApiModel
(
"客户类型字典表(1.0)"
)
public
class
ClientTypeClass
extends
Model
<
ClientTypeClass
>
{
private
static
final
long
serialVersionUID
=
4910747953236931117L
;
@Id
@GeneratedValue
@TableId
(
type
=
IdType
.
AUTO
)
@ApiModelProperty
(
value
=
"主键"
,
example
=
"1"
)
private
Integer
id
;
@ApiModelProperty
(
value
=
"类型名"
,
example
=
"行业"
)
private
String
name
;
@ApiModelProperty
(
value
=
"企业id"
,
example
=
"企业"
)
private
Integer
orgCode
;
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/clazz/IndustryClass.java
View file @
7795245e
...
...
@@ -14,7 +14,12 @@ import com.baomidou.mybatisplus.annotation.IdType;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
/**
* <p>
...
...
@@ -28,6 +33,11 @@ import io.swagger.annotations.ApiModelProperty;
* @date 2020年6月5日
* @version 1.0
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ApiModel
(
"行业字典表(1.0)"
)
public
class
IndustryClass
extends
Model
<
IndustryClass
>
{
private
static
final
long
serialVersionUID
=
-
5008126674106880292L
;
...
...
@@ -40,4 +50,8 @@ public class IndustryClass extends Model<IndustryClass> {
@ApiModelProperty
(
value
=
"行业名"
,
example
=
"行业"
)
private
String
name
;
@ApiModelProperty
(
value
=
"企业id"
,
example
=
"企业"
)
private
Integer
orgCode
;
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/clazz/SysRegion.java
View file @
7795245e
...
...
@@ -52,7 +52,7 @@ public class SysRegion extends Model<SysRegion>{
private
String
regionName
;
@ApiModelProperty
(
value
=
"区域编码"
,
example
=
"1"
)
private
String
regionCode
;
private
Integer
regionCode
;
@ApiModelProperty
(
value
=
"地名简称"
,
example
=
"1"
)
private
String
simpleName
;
...
...
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/crm/CrmBusinessGroup.java
View file @
7795245e
...
...
@@ -66,24 +66,6 @@ public class CrmBusinessGroup extends Model<CrmBusinessGroup> {
@ApiModelProperty
(
value
=
"业务组管理员名称"
)
private
String
managerName
;
// @ApiModelProperty(value = "回收规则id")
// private Integer ruleId;
@ApiModelProperty
(
value
=
"添加客户之后(one)天没有跟进 (以跟进记录为准)"
)
private
Integer
one
;
@ApiModelProperty
(
value
=
"距上次跟进(two)天没有再次跟进 (以跟进记录为准)"
)
private
Integer
two
;
@ApiModelProperty
(
value
=
"添加客户之后(three)天没有成交 (天数必须大于规则1)"
)
private
Integer
three
;
@ApiModelProperty
(
value
=
"系统提前(four)天自动提醒业务员客户将被回收"
)
private
Integer
four
;
@ApiModelProperty
(
value
=
"我的客户数量最多(five)人(合作中的不算)"
)
private
Integer
five
;
@ApiModelProperty
(
value
=
"创建时间"
)
@TableField
(
fill
=
FieldFill
.
INSERT
)
private
Date
createTime
;
...
...
@@ -100,11 +82,17 @@ public class CrmBusinessGroup extends Model<CrmBusinessGroup> {
@ApiModelProperty
(
value
=
"企业id"
)
private
Integer
orgCode
;
@Transient
@TableField
(
exist
=
false
)
@ApiModelProperty
(
value
=
"组成员id"
)
private
Integer
[]
ids
;
@Transient
@TableField
(
exist
=
false
)
@ApiModelProperty
(
value
=
"回收规则"
)
private
CrmSeaRule
crmSeaRules
;
// @ApiModelProperty(value = "组成员empNum(字符串,分割)",example = "1,2,3")
// private String member;
//
...
...
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/crm/CrmClientAssociate.java
0 → 100644
View file @
7795245e
/**
* Title: CrmClientAssociates.java
* Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
package
cn
.
timer
.
api
.
bean
.
crm
;
import
javax.persistence.Entity
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.Id
;
import
javax.persistence.Table
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
/**
* Title: CrmClientAssociates.java
*
* @Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
@Entity
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Table
(
name
=
"crm_client_associates"
)
@ApiModel
(
"客户协作人表"
)
public
class
CrmClientAssociate
extends
Model
<
CrmClientAssociate
>
{
private
static
final
long
serialVersionUID
=
6199712192983127587L
;
@Id
@GeneratedValue
@TableId
(
type
=
IdType
.
AUTO
)
@ApiModelProperty
(
value
=
"编号"
)
private
Integer
id
;
@ApiModelProperty
(
value
=
"客户数据id"
)
private
Integer
cid
;
@ApiModelProperty
(
value
=
"协作人id"
)
private
Integer
associateId
;
@ApiModelProperty
(
value
=
"协作人企业id"
)
private
Integer
orgCode
;
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/crm/CrmClientContacts.java
View file @
7795245e
...
...
@@ -43,7 +43,7 @@ import lombok.NoArgsConstructor;
@AllArgsConstructor
@Table
(
name
=
"crm_client_contacts"
)
@ApiModel
(
"客户联系人表"
)
public
class
CrmClientContacts
extends
Model
<
CrmClientContacts
>{
public
class
CrmClientContacts
extends
Model
<
CrmClientContacts
>
{
private
static
final
long
serialVersionUID
=
7527532835555744270L
;
...
...
@@ -76,7 +76,13 @@ public class CrmClientContacts extends Model<CrmClientContacts>{
@ApiModelProperty
(
value
=
"地址"
)
private
String
address
;
@ApiModelProperty
(
value
=
"企业id"
)
private
Integer
orgCode
;
@ApiModelProperty
(
value
=
"公司"
)
private
String
company
;
@ApiModelProperty
(
value
=
"备注"
)
private
String
remark
;
// @ApiModelProperty(value = "企业id")
// private Integer orgCode;
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/crm/CrmClientData.java
View file @
7795245e
...
...
@@ -8,13 +8,17 @@
package
cn
.
timer
.
api
.
bean
.
crm
;
import
java.util.Date
;
import
java.util.List
;
import
javax.persistence.Entity
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.Id
;
import
javax.persistence.Table
;
import
javax.persistence.Transient
;
import
com.baomidou.mybatisplus.annotation.FieldFill
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
...
...
@@ -45,7 +49,7 @@ import lombok.NoArgsConstructor;
@AllArgsConstructor
@Table
(
name
=
"crm_client_data"
)
@ApiModel
(
"客户数据表"
)
public
class
CrmClientData
extends
Model
<
CrmClientData
>{
public
class
CrmClientData
extends
Model
<
CrmClientData
>
{
private
static
final
long
serialVersionUID
=
-
5368056704790782780L
;
...
...
@@ -72,26 +76,34 @@ public class CrmClientData extends Model<CrmClientData>{
@ApiModelProperty
(
value
=
"行业名"
)
private
String
industryName
;
@ApiModelProperty
(
value
=
"客户邮箱"
)
private
String
clientEmail
;
@ApiModelProperty
(
value
=
"区编号"
)
private
Integer
keyId
;
@ApiModelProperty
(
value
=
"省"
)
private
String
province
;
@ApiModelProperty
(
value
=
"市"
)
private
String
city
;
@ApiModelProperty
(
value
=
"区"
)
private
String
district
;
@ApiModelProperty
(
value
=
"地址"
)
private
String
address
;
@ApiModelProperty
(
value
=
"邮编"
)
private
String
zipCode
;
@ApiModelProperty
(
value
=
"详细地址"
)
private
String
address
;
@ApiModelProperty
(
value
=
"客户类型"
)
private
String
clientType
;
@ApiModelProperty
(
value
=
"客户类型
id
"
)
private
Integer
clientType
;
@ApiModelProperty
(
value
=
"客户来源"
)
private
String
clientSource
;
@ApiModelProperty
(
value
=
"客户类型名"
)
private
String
clientTypeName
;
@ApiModelProperty
(
value
=
"客户来源id"
)
private
Integer
clientSource
;
@ApiModelProperty
(
value
=
"客户来源名"
)
private
String
clientSourceName
;
@ApiModelProperty
(
value
=
"备注"
)
private
String
remarks
;
...
...
@@ -102,18 +114,51 @@ public class CrmClientData extends Model<CrmClientData>{
@ApiModelProperty
(
value
=
"客户所属人姓名"
)
private
String
belongUserName
;
@ApiModelProperty
(
value
=
"
协作人empNum
"
)
private
Integer
associatesUser
;
@ApiModelProperty
(
value
=
"
客户所属业务组id
"
)
private
Integer
belongGroup
;
@ApiModelProperty
(
value
=
"协作人姓名"
)
private
String
associatesName
;
@ApiModelProperty
(
value
=
"客户所属业务组名"
)
private
String
belongGroupName
;
@ApiModelProperty
(
value
=
"客户数据状态 0-无 1-潜在 2-意向 3-签约 4-合作中 5-已封档"
)
private
Integer
clientStatus
;
@ApiModelProperty
(
value
=
"附件地址"
)
private
String
fileUrl
;
@ApiModelProperty
(
value
=
"客户联系人数量"
)
private
Integer
contactsNum
;
@ApiModelProperty
(
value
=
"收藏关注 0-否 1-是"
)
private
Integer
star
;
@ApiModelProperty
(
value
=
"创建人"
)
private
Integer
createUser
;
@TableField
(
fill
=
FieldFill
.
INSERT
)
@ApiModelProperty
(
value
=
"创建时间"
)
private
Date
createdTime
;
private
Date
createTime
;
@ApiModelProperty
(
value
=
"修改人"
)
private
Integer
modifyUser
;
@TableField
(
fill
=
FieldFill
.
INSERT_UPDATE
)
@ApiModelProperty
(
value
=
"修改时间"
)
private
Date
modifyTime
;
@ApiModelProperty
(
value
=
"最近跟进时间"
)
private
Date
lastFollowTime
;
@ApiModelProperty
(
value
=
"企业id"
)
private
Integer
orgCode
;
@Transient
@TableField
(
exist
=
false
)
@ApiModelProperty
(
value
=
"协作人id"
)
private
Integer
[]
ids
;
@Transient
@TableField
(
exist
=
false
)
@ApiModelProperty
(
value
=
"客户联系人数据列表"
)
private
List
<
CrmClientContacts
>
CrmClientContacts
;
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/bean/crm/CrmClientFollow.java
0 → 100644
View file @
7795245e
/**
* Title: CrmClientFollow.java
* Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
package
cn
.
timer
.
api
.
bean
.
crm
;
import
java.util.Date
;
import
javax.persistence.Entity
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.Id
;
import
javax.persistence.Table
;
import
com.baomidou.mybatisplus.annotation.FieldFill
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
/**
* Title: CrmClientFollow.java
*
* @Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
@Entity
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Table
(
name
=
"crm_client_follow"
)
@ApiModel
(
"客户数据跟进表"
)
public
class
CrmClientFollow
extends
Model
<
CrmClientFollow
>
{
private
static
final
long
serialVersionUID
=
-
7362549097557018582L
;
@Id
@GeneratedValue
@TableId
(
type
=
IdType
.
AUTO
)
@ApiModelProperty
(
value
=
"编号"
)
private
Integer
id
;
@ApiModelProperty
(
value
=
"客户数据id"
)
private
Integer
cid
;
@ApiModelProperty
(
value
=
"跟进内容"
)
private
Integer
content
;
@ApiModelProperty
(
value
=
"客户数据状态 0-无 1-潜在 2-意向 3-签约 4-合作中 5-已封档"
)
private
String
clientStatus
;
@ApiModelProperty
(
value
=
"联系人姓名"
)
private
String
name
;
@ApiModelProperty
(
value
=
"联系人公司"
)
private
String
company
;
@ApiModelProperty
(
value
=
"联系人职位"
)
private
String
position
;
@ApiModelProperty
(
value
=
"联系人手机号"
)
private
String
cellphone
;
@ApiModelProperty
(
value
=
"创建人"
)
private
Integer
createUser
;
@ApiModelProperty
(
value
=
"企业id"
)
private
Integer
orgCode
;
@ApiModelProperty
(
value
=
"创建人姓名"
)
private
String
createUserName
;
@TableField
(
fill
=
FieldFill
.
INSERT
)
@ApiModelProperty
(
value
=
"创建时间"
)
private
Date
createTime
;
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/controller/crm/CrmController.java
View file @
7795245e
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/controller/yggl/YgglController.java
View file @
7795245e
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/dao/clazz/CilentSourceClassMapper.java
0 → 100644
View file @
7795245e
/**
* Title: CilentSourceClassMapper.java
* Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
package
cn
.
timer
.
api
.
dao
.
clazz
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
cn.timer.api.bean.clazz.ClientSourceClass
;
/**
* Title: CilentSourceClassMapper.java
*
* @Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
public
interface
CilentSourceClassMapper
extends
BaseMapper
<
ClientSourceClass
>
{
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/dao/clazz/CilentTypeClassMapper.java
0 → 100644
View file @
7795245e
/**
* Title: CilentSourceClassMapper.java
* Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
package
cn
.
timer
.
api
.
dao
.
clazz
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
cn.timer.api.bean.clazz.ClientTypeClass
;
/**
* Title: CilentTypeClassMapper.java
*
* @Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
public
interface
CilentTypeClassMapper
extends
BaseMapper
<
ClientTypeClass
>
{
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/dao/clazz/IndustryClassMapper.java
0 → 100644
View file @
7795245e
/**
* Title: IndustryMapper.java
* Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
package
cn
.
timer
.
api
.
dao
.
clazz
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
cn.timer.api.bean.clazz.IndustryClass
;
/**
* Title: IndustryClassMapper.java
*
* @Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
public
interface
IndustryClassMapper
extends
BaseMapper
<
IndustryClass
>
{
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/dao/crm/CrmClientAssociatesMapper.java
0 → 100644
View file @
7795245e
/**
* Title: CrmClientAssociatesMapper.java
* Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
package
cn
.
timer
.
api
.
dao
.
crm
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
cn.timer.api.bean.crm.CrmClientAssociate
;
/**
* Title: CrmClientAssociatesMapper.java
*
* @Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
public
interface
CrmClientAssociatesMapper
extends
BaseMapper
<
CrmClientAssociate
>
{
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/dao/crm/CrmClientFollowMapper.java
0 → 100644
View file @
7795245e
/**
* Title: CrmClientFollowMapper.java
* Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
package
cn
.
timer
.
api
.
dao
.
crm
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
cn.timer.api.bean.crm.CrmClientFollow
;
/**
* Title: CrmClientFollowMapper.java
*
* @Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
public
interface
CrmClientFollowMapper
extends
BaseMapper
<
CrmClientFollow
>
{
}
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/dao/crm/CrmSeaRuleMapper.java
0 → 100644
View file @
7795245e
/**
* Title: CrmSeaRuleMapper.java
* Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
package
cn
.
timer
.
api
.
dao
.
crm
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
cn.timer.api.bean.crm.CrmSeaRule
;
/**
* Title: CrmSeaRuleMapper.java
*
* @Description:
* @author dsc
* @date 2020年6月8日
* @version 1.0
*/
public
interface
CrmSeaRuleMapper
extends
BaseMapper
<
CrmSeaRule
>
{
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment