Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
T
tanpu-community
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
探普后端
tanpu-community
Commits
14e76bea
Commit
14e76bea
authored
Aug 03, 2021
by
张辰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
移除无用mapper
parent
85dfcd85
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
2100 deletions
+7
-2100
UserDataSourceConfig.java
...in/java/com/tanpu/community/dao/UserDataSourceConfig.java
+0
-53
ZhiboDataSourceConfig.java
...n/java/com/tanpu/community/dao/ZhiboDataSourceConfig.java
+0
-52
UserInfoEntity.java
...a/com/tanpu/community/dao/entity/user/UserInfoEntity.java
+0
-986
ZhiboThemeEntity.java
...om/tanpu/community/dao/entity/zhibo/ZhiboThemeEntity.java
+0
-986
ZhiboThemeMapper.java
...om/tanpu/community/dao/mapper/zhibo/ZhiboThemeMapper.java
+0
-16
application-dev.yml
community-service/src/main/resources/application-dev.yml
+7
-7
No files found.
community-service/src/main/java/com/tanpu/community/dao/UserDataSourceConfig.java
deleted
100644 → 0
View file @
85dfcd85
package
com
.
tanpu
.
community
.
dao
;
import
com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean
;
import
com.tanpu.community.api.CommunityConstant
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.ibatis.session.SqlSessionFactory
;
import
org.mybatis.spring.SqlSessionTemplate
;
import
org.mybatis.spring.annotation.MapperScan
;
import
org.springframework.beans.factory.annotation.Qualifier
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
org.springframework.boot.jdbc.DataSourceBuilder
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.core.io.support.PathMatchingResourcePatternResolver
;
import
org.springframework.jdbc.datasource.DataSourceTransactionManager
;
import
javax.sql.DataSource
;
/**
* created by xd on 2021/6/3
*/
@Configuration
@Slf4j
@MapperScan
(
basePackages
=
CommunityConstant
.
PACKAGE_BASE
+
".dao.mapper.user"
,
sqlSessionTemplateRef
=
"userSqlSessionTemplate"
)
public
class
UserDataSourceConfig
{
@ConfigurationProperties
(
prefix
=
"spring.datasource.user"
)
@Bean
(
name
=
"userDataSource"
)
public
DataSource
dataSource
()
{
return
DataSourceBuilder
.
create
().
build
();
}
@Bean
(
name
=
"userSqlSessionFactory"
)
public
SqlSessionFactory
sqlSessionFactory
(
@Qualifier
(
"userDataSource"
)
DataSource
dataSource
)
throws
Exception
{
MybatisSqlSessionFactoryBean
bean
=
new
MybatisSqlSessionFactoryBean
();
bean
.
setDataSource
(
dataSource
);
bean
.
setMapperLocations
(
new
PathMatchingResourcePatternResolver
().
getResources
(
"classpath*:mapper/user/*.xml"
));
return
bean
.
getObject
();
}
@Bean
(
name
=
"userTransactionManager"
)
public
DataSourceTransactionManager
userTransactionManager
(
@Qualifier
(
"userDataSource"
)
DataSource
dataSource
)
{
return
new
DataSourceTransactionManager
(
dataSource
);
}
@Bean
(
name
=
"userSqlSessionTemplate"
)
public
SqlSessionTemplate
userSqlSessionTemplate
(
@Qualifier
(
"userSqlSessionFactory"
)
SqlSessionFactory
sqlSessionFactory
)
{
return
new
SqlSessionTemplate
(
sqlSessionFactory
);
}
}
community-service/src/main/java/com/tanpu/community/dao/ZhiboDataSourceConfig.java
deleted
100644 → 0
View file @
85dfcd85
package
com
.
tanpu
.
community
.
dao
;
import
com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean
;
import
com.tanpu.community.api.CommunityConstant
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.ibatis.session.SqlSessionFactory
;
import
org.mybatis.spring.SqlSessionTemplate
;
import
org.mybatis.spring.annotation.MapperScan
;
import
org.springframework.beans.factory.annotation.Qualifier
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
org.springframework.boot.jdbc.DataSourceBuilder
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.core.io.support.PathMatchingResourcePatternResolver
;
import
org.springframework.jdbc.datasource.DataSourceTransactionManager
;
import
javax.sql.DataSource
;
/**
* created by xd on 2021/6/3
*/
@Configuration
@Slf4j
@MapperScan
(
basePackages
=
CommunityConstant
.
PACKAGE_BASE
+
".dao.mapper.zhibo"
,
sqlSessionTemplateRef
=
"zhiboSqlSessionTemplate"
)
public
class
ZhiboDataSourceConfig
{
@ConfigurationProperties
(
prefix
=
"spring.datasource.zhibo"
)
@Bean
(
name
=
"zhiboDataSource"
)
public
DataSource
dataSource
()
{
return
DataSourceBuilder
.
create
().
build
();
}
@Bean
(
name
=
"zhiboSqlSessionFactory"
)
public
SqlSessionFactory
sqlSessionFactory
(
@Qualifier
(
"zhiboDataSource"
)
DataSource
dataSource
)
throws
Exception
{
MybatisSqlSessionFactoryBean
bean
=
new
MybatisSqlSessionFactoryBean
();
bean
.
setDataSource
(
dataSource
);
bean
.
setMapperLocations
(
new
PathMatchingResourcePatternResolver
().
getResources
(
"classpath*:mapper/zhibo/*.xml"
));
return
bean
.
getObject
();
}
@Bean
(
name
=
"zhiboTransactionManager"
)
public
DataSourceTransactionManager
zhiboTransactionManager
(
@Qualifier
(
"zhiboDataSource"
)
DataSource
dataSource
)
{
return
new
DataSourceTransactionManager
(
dataSource
);
}
@Bean
(
name
=
"zhiboSqlSessionTemplate"
)
public
SqlSessionTemplate
zhiboSqlSessionTemplate
(
@Qualifier
(
"zhiboSqlSessionFactory"
)
SqlSessionFactory
sqlSessionFactory
)
{
return
new
SqlSessionTemplate
(
sqlSessionFactory
);
}
}
community-service/src/main/java/com/tanpu/community/dao/entity/user/UserInfoEntity.java
deleted
100644 → 0
View file @
85dfcd85
package
com
.
tanpu
.
community
.
dao
.
entity
.
user
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
java.io.Serializable
;
import
java.time.LocalDateTime
;
/**
* <p>
*
* </p>
*
* @author xudong
* @since 2021-07-20
*/
@TableName
(
"user_info"
)
@ApiModel
(
value
=
"UserInfoEntity对象"
,
description
=
""
)
public
class
UserInfoEntity
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
@ApiModelProperty
(
value
=
"唯一主键"
)
private
String
id
;
@ApiModelProperty
(
value
=
"账户类型 1普通账号 2机构账号 3机构人员"
)
private
Integer
userType
;
@ApiModelProperty
(
value
=
"微信openId"
)
private
String
uiOpenid
;
@ApiModelProperty
(
value
=
"unionId"
)
@TableField
(
"ui_unionId"
)
private
String
uiUnionid
;
@ApiModelProperty
(
value
=
"手机号"
)
private
String
uiTelphone
;
@ApiModelProperty
(
value
=
"登录密码"
)
private
String
uiPwd
;
@ApiModelProperty
(
value
=
"昵称"
)
private
String
uiNickname
;
@ApiModelProperty
(
value
=
"头像"
)
private
String
uiHeadimg
;
@ApiModelProperty
(
value
=
"姓名"
)
private
String
uiUsername
;
@ApiModelProperty
(
value
=
"性别 0:男 1:女"
)
private
String
uiSex
;
@ApiModelProperty
(
value
=
"生日"
)
private
LocalDateTime
uiBirthday
;
@ApiModelProperty
(
value
=
"个人介绍"
)
private
String
uiIntroduction
;
@ApiModelProperty
(
value
=
"名片样式 0:小名片 1:大名片"
)
private
String
uiTypeMp
;
@ApiModelProperty
(
value
=
"名片头像"
)
private
String
uiHeadimgMp
;
@ApiModelProperty
(
value
=
"名片姓名"
)
private
String
uiUsernameMp
;
@ApiModelProperty
(
value
=
"名片电话"
)
private
String
uiTelphoneMp
;
@ApiModelProperty
(
value
=
"手机"
)
private
String
uiMobilephoneMp
;
@ApiModelProperty
(
value
=
"名片公司名称"
)
private
String
uiCompanyMp
;
@ApiModelProperty
(
value
=
"名片公司地址"
)
private
String
uiCompanyAddressMp
;
@ApiModelProperty
(
value
=
"名片职位"
)
private
String
uiPositionMp
;
@ApiModelProperty
(
value
=
"行业"
)
private
String
uiIndustryMp
;
@ApiModelProperty
(
value
=
"名片邮箱"
)
private
String
uiEmailMp
;
@ApiModelProperty
(
value
=
"名片个人介绍"
)
private
String
uiIntroductionMp
;
@ApiModelProperty
(
value
=
"微信个人二维码名片"
)
private
String
uiWechatQrcode
;
@ApiModelProperty
(
value
=
"小程序二维码"
)
private
String
uiWechatXcxQrcode
;
@ApiModelProperty
(
value
=
"类型 0:app注册 1:平台添加"
)
private
String
uiType
;
@ApiModelProperty
(
value
=
"用户身份 0:普通用户 1:种子用户 2:超级用户"
)
private
String
uiShenfen
;
@ApiModelProperty
(
value
=
"认证状态 0:未认证 1:已认证"
)
private
Integer
uiRzstatus
;
@ApiModelProperty
(
value
=
"机构Id"
)
private
String
orgId
;
@ApiModelProperty
(
value
=
"团队Id"
)
private
String
teamId
;
@ApiModelProperty
(
value
=
"加入团队时间"
)
private
LocalDateTime
joinTime
;
@ApiModelProperty
(
value
=
"员工工号"
)
private
String
staffNo
;
@ApiModelProperty
(
value
=
"合格投资者认证状态"
)
private
Integer
investorCertifiedStatus
;
@ApiModelProperty
(
value
=
"合格投资者认证时间"
)
private
LocalDateTime
investorCertifiedTime
;
@ApiModelProperty
(
value
=
"对外合作权限"
)
private
String
toPartner
;
@ApiModelProperty
(
value
=
"等级"
)
private
String
uiGrade
;
@ApiModelProperty
(
value
=
"内容审核"
)
private
Integer
contentReview
;
@ApiModelProperty
(
value
=
"所获荣誉"
)
private
String
uiHonor
;
@ApiModelProperty
(
value
=
"海报扫码关注公众号引流人"
)
private
String
uiHbUserid
;
private
String
staffRegion
;
private
String
branchName
;
private
String
subBranchName
;
private
String
branchNetworkName
;
private
String
uiGradeName
;
private
String
uiTargetGradeName
;
private
String
uiSource
;
@ApiModelProperty
(
value
=
"创建时间"
)
private
LocalDateTime
createtime
;
@ApiModelProperty
(
value
=
"创建人"
)
private
String
createby
;
@ApiModelProperty
(
value
=
"修改时间"
)
private
LocalDateTime
updatetime
;
@ApiModelProperty
(
value
=
"修改人"
)
private
String
updateby
;
@ApiModelProperty
(
value
=
"删除标识"
)
private
String
deletetag
;
@ApiModelProperty
(
value
=
"前端角色"
)
private
String
frontRoles
;
@ApiModelProperty
(
value
=
"名片检查"
)
private
Integer
uiCheckStatus
;
private
String
city
;
private
String
province
;
private
String
country
;
private
String
uiInviter
;
private
String
uiInviterPhone
;
private
Integer
uiAge
;
private
String
uiRegion
;
private
String
uiWecaht
;
private
LocalDateTime
uiInviterTime
;
@ApiModelProperty
(
value
=
"微信unionId"
)
private
String
unionid
;
@ApiModelProperty
(
value
=
"0游客,1注册用户,2理财师"
)
private
Integer
level
;
@ApiModelProperty
(
value
=
"0游客,1注册用户,20探普理顾 30:探普专家理顾 40:交易理财师"
)
private
Integer
levelGrade
;
@ApiModelProperty
(
value
=
"年龄"
)
private
Integer
age
;
@ApiModelProperty
(
value
=
"区县"
)
private
String
district
;
@ApiModelProperty
(
value
=
"详细地址"
)
private
String
address
;
@ApiModelProperty
(
value
=
"学历:0: 未知,1:专科,2:本科,3:211本科,4:硕士及以上"
)
private
Integer
education
;
@ApiModelProperty
(
value
=
"微信号"
)
private
String
wechat
;
@ApiModelProperty
(
value
=
"高净值客户数(0:无,1:10人一下,2:10-30人,3:30-50人,4:50以上)"
)
private
Integer
highWorthCustomerNum
;
@ApiModelProperty
(
value
=
"高净值客户资产配置:(0:无,1:100万一下,2:100-200万,3:200-400万,4:400-600万,5:600万以上)"
)
private
Integer
customerAsset
;
@ApiModelProperty
(
value
=
"自身是否是理财师"
)
private
Integer
financialPlanner
;
@ApiModelProperty
(
value
=
"会员到期时间"
)
private
LocalDateTime
vipEndTime
;
private
LocalDateTime
uiRegisterTime
;
@ApiModelProperty
(
value
=
"权限集 以英文;分割(S1-基础营)"
)
private
String
uiAuth
;
private
String
uiChannel
;
@ApiModelProperty
(
value
=
"审核时间"
)
private
LocalDateTime
reviewTime
;
@ApiModelProperty
(
value
=
"苹果授权用户id"
)
private
String
uiAppleUserid
;
@ApiModelProperty
(
value
=
"理财师编号"
)
private
String
ifaNo
;
@ApiModelProperty
(
value
=
"真实姓名,禁用于运营维护"
)
private
String
realname
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
Integer
getUserType
()
{
return
userType
;
}
public
void
setUserType
(
Integer
userType
)
{
this
.
userType
=
userType
;
}
public
String
getUiOpenid
()
{
return
uiOpenid
;
}
public
void
setUiOpenid
(
String
uiOpenid
)
{
this
.
uiOpenid
=
uiOpenid
;
}
public
String
getUiUnionid
()
{
return
uiUnionid
;
}
public
void
setUiUnionid
(
String
uiUnionid
)
{
this
.
uiUnionid
=
uiUnionid
;
}
public
String
getUiTelphone
()
{
return
uiTelphone
;
}
public
void
setUiTelphone
(
String
uiTelphone
)
{
this
.
uiTelphone
=
uiTelphone
;
}
public
String
getUiPwd
()
{
return
uiPwd
;
}
public
void
setUiPwd
(
String
uiPwd
)
{
this
.
uiPwd
=
uiPwd
;
}
public
String
getUiNickname
()
{
return
uiNickname
;
}
public
void
setUiNickname
(
String
uiNickname
)
{
this
.
uiNickname
=
uiNickname
;
}
public
String
getUiHeadimg
()
{
return
uiHeadimg
;
}
public
void
setUiHeadimg
(
String
uiHeadimg
)
{
this
.
uiHeadimg
=
uiHeadimg
;
}
public
String
getUiUsername
()
{
return
uiUsername
;
}
public
void
setUiUsername
(
String
uiUsername
)
{
this
.
uiUsername
=
uiUsername
;
}
public
String
getUiSex
()
{
return
uiSex
;
}
public
void
setUiSex
(
String
uiSex
)
{
this
.
uiSex
=
uiSex
;
}
public
LocalDateTime
getUiBirthday
()
{
return
uiBirthday
;
}
public
void
setUiBirthday
(
LocalDateTime
uiBirthday
)
{
this
.
uiBirthday
=
uiBirthday
;
}
public
String
getUiIntroduction
()
{
return
uiIntroduction
;
}
public
void
setUiIntroduction
(
String
uiIntroduction
)
{
this
.
uiIntroduction
=
uiIntroduction
;
}
public
String
getUiTypeMp
()
{
return
uiTypeMp
;
}
public
void
setUiTypeMp
(
String
uiTypeMp
)
{
this
.
uiTypeMp
=
uiTypeMp
;
}
public
String
getUiHeadimgMp
()
{
return
uiHeadimgMp
;
}
public
void
setUiHeadimgMp
(
String
uiHeadimgMp
)
{
this
.
uiHeadimgMp
=
uiHeadimgMp
;
}
public
String
getUiUsernameMp
()
{
return
uiUsernameMp
;
}
public
void
setUiUsernameMp
(
String
uiUsernameMp
)
{
this
.
uiUsernameMp
=
uiUsernameMp
;
}
public
String
getUiTelphoneMp
()
{
return
uiTelphoneMp
;
}
public
void
setUiTelphoneMp
(
String
uiTelphoneMp
)
{
this
.
uiTelphoneMp
=
uiTelphoneMp
;
}
public
String
getUiMobilephoneMp
()
{
return
uiMobilephoneMp
;
}
public
void
setUiMobilephoneMp
(
String
uiMobilephoneMp
)
{
this
.
uiMobilephoneMp
=
uiMobilephoneMp
;
}
public
String
getUiCompanyMp
()
{
return
uiCompanyMp
;
}
public
void
setUiCompanyMp
(
String
uiCompanyMp
)
{
this
.
uiCompanyMp
=
uiCompanyMp
;
}
public
String
getUiCompanyAddressMp
()
{
return
uiCompanyAddressMp
;
}
public
void
setUiCompanyAddressMp
(
String
uiCompanyAddressMp
)
{
this
.
uiCompanyAddressMp
=
uiCompanyAddressMp
;
}
public
String
getUiPositionMp
()
{
return
uiPositionMp
;
}
public
void
setUiPositionMp
(
String
uiPositionMp
)
{
this
.
uiPositionMp
=
uiPositionMp
;
}
public
String
getUiIndustryMp
()
{
return
uiIndustryMp
;
}
public
void
setUiIndustryMp
(
String
uiIndustryMp
)
{
this
.
uiIndustryMp
=
uiIndustryMp
;
}
public
String
getUiEmailMp
()
{
return
uiEmailMp
;
}
public
void
setUiEmailMp
(
String
uiEmailMp
)
{
this
.
uiEmailMp
=
uiEmailMp
;
}
public
String
getUiIntroductionMp
()
{
return
uiIntroductionMp
;
}
public
void
setUiIntroductionMp
(
String
uiIntroductionMp
)
{
this
.
uiIntroductionMp
=
uiIntroductionMp
;
}
public
String
getUiWechatQrcode
()
{
return
uiWechatQrcode
;
}
public
void
setUiWechatQrcode
(
String
uiWechatQrcode
)
{
this
.
uiWechatQrcode
=
uiWechatQrcode
;
}
public
String
getUiWechatXcxQrcode
()
{
return
uiWechatXcxQrcode
;
}
public
void
setUiWechatXcxQrcode
(
String
uiWechatXcxQrcode
)
{
this
.
uiWechatXcxQrcode
=
uiWechatXcxQrcode
;
}
public
String
getUiType
()
{
return
uiType
;
}
public
void
setUiType
(
String
uiType
)
{
this
.
uiType
=
uiType
;
}
public
String
getUiShenfen
()
{
return
uiShenfen
;
}
public
void
setUiShenfen
(
String
uiShenfen
)
{
this
.
uiShenfen
=
uiShenfen
;
}
public
Integer
getUiRzstatus
()
{
return
uiRzstatus
;
}
public
void
setUiRzstatus
(
Integer
uiRzstatus
)
{
this
.
uiRzstatus
=
uiRzstatus
;
}
public
String
getOrgId
()
{
return
orgId
;
}
public
void
setOrgId
(
String
orgId
)
{
this
.
orgId
=
orgId
;
}
public
String
getTeamId
()
{
return
teamId
;
}
public
void
setTeamId
(
String
teamId
)
{
this
.
teamId
=
teamId
;
}
public
LocalDateTime
getJoinTime
()
{
return
joinTime
;
}
public
void
setJoinTime
(
LocalDateTime
joinTime
)
{
this
.
joinTime
=
joinTime
;
}
public
String
getStaffNo
()
{
return
staffNo
;
}
public
void
setStaffNo
(
String
staffNo
)
{
this
.
staffNo
=
staffNo
;
}
public
Integer
getInvestorCertifiedStatus
()
{
return
investorCertifiedStatus
;
}
public
void
setInvestorCertifiedStatus
(
Integer
investorCertifiedStatus
)
{
this
.
investorCertifiedStatus
=
investorCertifiedStatus
;
}
public
LocalDateTime
getInvestorCertifiedTime
()
{
return
investorCertifiedTime
;
}
public
void
setInvestorCertifiedTime
(
LocalDateTime
investorCertifiedTime
)
{
this
.
investorCertifiedTime
=
investorCertifiedTime
;
}
public
String
getToPartner
()
{
return
toPartner
;
}
public
void
setToPartner
(
String
toPartner
)
{
this
.
toPartner
=
toPartner
;
}
public
String
getUiGrade
()
{
return
uiGrade
;
}
public
void
setUiGrade
(
String
uiGrade
)
{
this
.
uiGrade
=
uiGrade
;
}
public
Integer
getContentReview
()
{
return
contentReview
;
}
public
void
setContentReview
(
Integer
contentReview
)
{
this
.
contentReview
=
contentReview
;
}
public
String
getUiHonor
()
{
return
uiHonor
;
}
public
void
setUiHonor
(
String
uiHonor
)
{
this
.
uiHonor
=
uiHonor
;
}
public
String
getUiHbUserid
()
{
return
uiHbUserid
;
}
public
void
setUiHbUserid
(
String
uiHbUserid
)
{
this
.
uiHbUserid
=
uiHbUserid
;
}
public
String
getStaffRegion
()
{
return
staffRegion
;
}
public
void
setStaffRegion
(
String
staffRegion
)
{
this
.
staffRegion
=
staffRegion
;
}
public
String
getBranchName
()
{
return
branchName
;
}
public
void
setBranchName
(
String
branchName
)
{
this
.
branchName
=
branchName
;
}
public
String
getSubBranchName
()
{
return
subBranchName
;
}
public
void
setSubBranchName
(
String
subBranchName
)
{
this
.
subBranchName
=
subBranchName
;
}
public
String
getBranchNetworkName
()
{
return
branchNetworkName
;
}
public
void
setBranchNetworkName
(
String
branchNetworkName
)
{
this
.
branchNetworkName
=
branchNetworkName
;
}
public
String
getUiGradeName
()
{
return
uiGradeName
;
}
public
void
setUiGradeName
(
String
uiGradeName
)
{
this
.
uiGradeName
=
uiGradeName
;
}
public
String
getUiTargetGradeName
()
{
return
uiTargetGradeName
;
}
public
void
setUiTargetGradeName
(
String
uiTargetGradeName
)
{
this
.
uiTargetGradeName
=
uiTargetGradeName
;
}
public
String
getUiSource
()
{
return
uiSource
;
}
public
void
setUiSource
(
String
uiSource
)
{
this
.
uiSource
=
uiSource
;
}
public
LocalDateTime
getCreatetime
()
{
return
createtime
;
}
public
void
setCreatetime
(
LocalDateTime
createtime
)
{
this
.
createtime
=
createtime
;
}
public
String
getCreateby
()
{
return
createby
;
}
public
void
setCreateby
(
String
createby
)
{
this
.
createby
=
createby
;
}
public
LocalDateTime
getUpdatetime
()
{
return
updatetime
;
}
public
void
setUpdatetime
(
LocalDateTime
updatetime
)
{
this
.
updatetime
=
updatetime
;
}
public
String
getUpdateby
()
{
return
updateby
;
}
public
void
setUpdateby
(
String
updateby
)
{
this
.
updateby
=
updateby
;
}
public
String
getDeletetag
()
{
return
deletetag
;
}
public
void
setDeletetag
(
String
deletetag
)
{
this
.
deletetag
=
deletetag
;
}
public
String
getFrontRoles
()
{
return
frontRoles
;
}
public
void
setFrontRoles
(
String
frontRoles
)
{
this
.
frontRoles
=
frontRoles
;
}
public
Integer
getUiCheckStatus
()
{
return
uiCheckStatus
;
}
public
void
setUiCheckStatus
(
Integer
uiCheckStatus
)
{
this
.
uiCheckStatus
=
uiCheckStatus
;
}
public
String
getCity
()
{
return
city
;
}
public
void
setCity
(
String
city
)
{
this
.
city
=
city
;
}
public
String
getProvince
()
{
return
province
;
}
public
void
setProvince
(
String
province
)
{
this
.
province
=
province
;
}
public
String
getCountry
()
{
return
country
;
}
public
void
setCountry
(
String
country
)
{
this
.
country
=
country
;
}
public
String
getUiInviter
()
{
return
uiInviter
;
}
public
void
setUiInviter
(
String
uiInviter
)
{
this
.
uiInviter
=
uiInviter
;
}
public
String
getUiInviterPhone
()
{
return
uiInviterPhone
;
}
public
void
setUiInviterPhone
(
String
uiInviterPhone
)
{
this
.
uiInviterPhone
=
uiInviterPhone
;
}
public
Integer
getUiAge
()
{
return
uiAge
;
}
public
void
setUiAge
(
Integer
uiAge
)
{
this
.
uiAge
=
uiAge
;
}
public
String
getUiRegion
()
{
return
uiRegion
;
}
public
void
setUiRegion
(
String
uiRegion
)
{
this
.
uiRegion
=
uiRegion
;
}
public
String
getUiWecaht
()
{
return
uiWecaht
;
}
public
void
setUiWecaht
(
String
uiWecaht
)
{
this
.
uiWecaht
=
uiWecaht
;
}
public
LocalDateTime
getUiInviterTime
()
{
return
uiInviterTime
;
}
public
void
setUiInviterTime
(
LocalDateTime
uiInviterTime
)
{
this
.
uiInviterTime
=
uiInviterTime
;
}
public
String
getUnionid
()
{
return
unionid
;
}
public
void
setUnionid
(
String
unionid
)
{
this
.
unionid
=
unionid
;
}
public
Integer
getLevel
()
{
return
level
;
}
public
void
setLevel
(
Integer
level
)
{
this
.
level
=
level
;
}
public
Integer
getLevelGrade
()
{
return
levelGrade
;
}
public
void
setLevelGrade
(
Integer
levelGrade
)
{
this
.
levelGrade
=
levelGrade
;
}
public
Integer
getAge
()
{
return
age
;
}
public
void
setAge
(
Integer
age
)
{
this
.
age
=
age
;
}
public
String
getDistrict
()
{
return
district
;
}
public
void
setDistrict
(
String
district
)
{
this
.
district
=
district
;
}
public
String
getAddress
()
{
return
address
;
}
public
void
setAddress
(
String
address
)
{
this
.
address
=
address
;
}
public
Integer
getEducation
()
{
return
education
;
}
public
void
setEducation
(
Integer
education
)
{
this
.
education
=
education
;
}
public
String
getWechat
()
{
return
wechat
;
}
public
void
setWechat
(
String
wechat
)
{
this
.
wechat
=
wechat
;
}
public
Integer
getHighWorthCustomerNum
()
{
return
highWorthCustomerNum
;
}
public
void
setHighWorthCustomerNum
(
Integer
highWorthCustomerNum
)
{
this
.
highWorthCustomerNum
=
highWorthCustomerNum
;
}
public
Integer
getCustomerAsset
()
{
return
customerAsset
;
}
public
void
setCustomerAsset
(
Integer
customerAsset
)
{
this
.
customerAsset
=
customerAsset
;
}
public
Integer
getFinancialPlanner
()
{
return
financialPlanner
;
}
public
void
setFinancialPlanner
(
Integer
financialPlanner
)
{
this
.
financialPlanner
=
financialPlanner
;
}
public
LocalDateTime
getVipEndTime
()
{
return
vipEndTime
;
}
public
void
setVipEndTime
(
LocalDateTime
vipEndTime
)
{
this
.
vipEndTime
=
vipEndTime
;
}
public
LocalDateTime
getUiRegisterTime
()
{
return
uiRegisterTime
;
}
public
void
setUiRegisterTime
(
LocalDateTime
uiRegisterTime
)
{
this
.
uiRegisterTime
=
uiRegisterTime
;
}
public
String
getUiAuth
()
{
return
uiAuth
;
}
public
void
setUiAuth
(
String
uiAuth
)
{
this
.
uiAuth
=
uiAuth
;
}
public
String
getUiChannel
()
{
return
uiChannel
;
}
public
void
setUiChannel
(
String
uiChannel
)
{
this
.
uiChannel
=
uiChannel
;
}
public
LocalDateTime
getReviewTime
()
{
return
reviewTime
;
}
public
void
setReviewTime
(
LocalDateTime
reviewTime
)
{
this
.
reviewTime
=
reviewTime
;
}
public
String
getUiAppleUserid
()
{
return
uiAppleUserid
;
}
public
void
setUiAppleUserid
(
String
uiAppleUserid
)
{
this
.
uiAppleUserid
=
uiAppleUserid
;
}
public
String
getIfaNo
()
{
return
ifaNo
;
}
public
void
setIfaNo
(
String
ifaNo
)
{
this
.
ifaNo
=
ifaNo
;
}
public
String
getRealname
()
{
return
realname
;
}
public
void
setRealname
(
String
realname
)
{
this
.
realname
=
realname
;
}
@Override
public
String
toString
()
{
return
"UserInfoEntity{"
+
"id="
+
id
+
", userType="
+
userType
+
", uiOpenid="
+
uiOpenid
+
", uiUnionid="
+
uiUnionid
+
", uiTelphone="
+
uiTelphone
+
", uiPwd="
+
uiPwd
+
", uiNickname="
+
uiNickname
+
", uiHeadimg="
+
uiHeadimg
+
", uiUsername="
+
uiUsername
+
", uiSex="
+
uiSex
+
", uiBirthday="
+
uiBirthday
+
", uiIntroduction="
+
uiIntroduction
+
", uiTypeMp="
+
uiTypeMp
+
", uiHeadimgMp="
+
uiHeadimgMp
+
", uiUsernameMp="
+
uiUsernameMp
+
", uiTelphoneMp="
+
uiTelphoneMp
+
", uiMobilephoneMp="
+
uiMobilephoneMp
+
", uiCompanyMp="
+
uiCompanyMp
+
", uiCompanyAddressMp="
+
uiCompanyAddressMp
+
", uiPositionMp="
+
uiPositionMp
+
", uiIndustryMp="
+
uiIndustryMp
+
", uiEmailMp="
+
uiEmailMp
+
", uiIntroductionMp="
+
uiIntroductionMp
+
", uiWechatQrcode="
+
uiWechatQrcode
+
", uiWechatXcxQrcode="
+
uiWechatXcxQrcode
+
", uiType="
+
uiType
+
", uiShenfen="
+
uiShenfen
+
", uiRzstatus="
+
uiRzstatus
+
", orgId="
+
orgId
+
", teamId="
+
teamId
+
", joinTime="
+
joinTime
+
", staffNo="
+
staffNo
+
", investorCertifiedStatus="
+
investorCertifiedStatus
+
", investorCertifiedTime="
+
investorCertifiedTime
+
", toPartner="
+
toPartner
+
", uiGrade="
+
uiGrade
+
", contentReview="
+
contentReview
+
", uiHonor="
+
uiHonor
+
", uiHbUserid="
+
uiHbUserid
+
", staffRegion="
+
staffRegion
+
", branchName="
+
branchName
+
", subBranchName="
+
subBranchName
+
", branchNetworkName="
+
branchNetworkName
+
", uiGradeName="
+
uiGradeName
+
", uiTargetGradeName="
+
uiTargetGradeName
+
", uiSource="
+
uiSource
+
", createtime="
+
createtime
+
", createby="
+
createby
+
", updatetime="
+
updatetime
+
", updateby="
+
updateby
+
", deletetag="
+
deletetag
+
", frontRoles="
+
frontRoles
+
", uiCheckStatus="
+
uiCheckStatus
+
", city="
+
city
+
", province="
+
province
+
", country="
+
country
+
", uiInviter="
+
uiInviter
+
", uiInviterPhone="
+
uiInviterPhone
+
", uiAge="
+
uiAge
+
", uiRegion="
+
uiRegion
+
", uiWecaht="
+
uiWecaht
+
", uiInviterTime="
+
uiInviterTime
+
", unionid="
+
unionid
+
", level="
+
level
+
", levelGrade="
+
levelGrade
+
", age="
+
age
+
", district="
+
district
+
", address="
+
address
+
", education="
+
education
+
", wechat="
+
wechat
+
", highWorthCustomerNum="
+
highWorthCustomerNum
+
", customerAsset="
+
customerAsset
+
", financialPlanner="
+
financialPlanner
+
", vipEndTime="
+
vipEndTime
+
", uiRegisterTime="
+
uiRegisterTime
+
", uiAuth="
+
uiAuth
+
", uiChannel="
+
uiChannel
+
", reviewTime="
+
reviewTime
+
", uiAppleUserid="
+
uiAppleUserid
+
", ifaNo="
+
ifaNo
+
", realname="
+
realname
+
"}"
;
}
}
community-service/src/main/java/com/tanpu/community/dao/entity/zhibo/ZhiboThemeEntity.java
deleted
100644 → 0
View file @
85dfcd85
package
com
.
tanpu
.
community
.
dao
.
entity
.
zhibo
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
java.time.LocalDateTime
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
java.io.Serializable
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
/**
* <p>
* 直播间信息表
* </p>
*
* @author xudong
* @since 2021-06-23
*/
@TableName
(
"zhibo_theme"
)
@ApiModel
(
value
=
"ZhiboThemeEntity对象"
,
description
=
"直播间信息表"
)
public
class
ZhiboThemeEntity
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
@ApiModelProperty
(
value
=
"唯一主键"
)
private
String
id
;
@ApiModelProperty
(
value
=
"主题名称"
)
private
String
ztName
;
@ApiModelProperty
(
value
=
"开播时间"
)
private
LocalDateTime
ztStarttime
;
@ApiModelProperty
(
value
=
"结束时间"
)
private
LocalDateTime
ztEndtime
;
@ApiModelProperty
(
value
=
"描述"
)
private
String
ztDesc
;
@ApiModelProperty
(
value
=
"(废弃)"
)
private
String
ztRoomnum
;
@ApiModelProperty
(
value
=
"创建时间"
)
private
LocalDateTime
createTime
;
@ApiModelProperty
(
value
=
"创建人"
)
private
String
createBy
;
@ApiModelProperty
(
value
=
"修改时间"
)
private
LocalDateTime
updateTime
;
@ApiModelProperty
(
value
=
"修改人"
)
private
String
updateBy
;
@ApiModelProperty
(
value
=
"删除标识 0:正常,1: 删除 2:草稿"
)
private
String
deletetag
;
@ApiModelProperty
(
value
=
"直播间状态 1未开始,2直播中,3已结束"
)
private
String
ztStatus
;
@ApiModelProperty
(
value
=
"列表缩略图"
)
private
String
ztBackimg
;
@ApiModelProperty
(
value
=
"分享模式"
)
private
Integer
sharePattern
;
@ApiModelProperty
(
value
=
"详情背景图"
)
private
String
ztImg
;
@ApiModelProperty
(
value
=
"最新大图"
)
private
String
bigImg
;
@ApiModelProperty
(
value
=
"是否含直播"
)
private
String
ztIszhibo
;
@ApiModelProperty
(
value
=
"关联产品"
)
private
String
ztProid
;
@ApiModelProperty
(
value
=
"培训人"
)
private
String
ztUname
;
@ApiModelProperty
(
value
=
"参与人开放标识"
)
private
String
ztFlag
;
@ApiModelProperty
(
value
=
"机构ID"
)
private
String
orgId
;
@ApiModelProperty
(
value
=
"密码"
)
private
String
ztPassword
;
@ApiModelProperty
(
value
=
"直播标签"
)
private
String
ztLabel
;
@ApiModelProperty
(
value
=
"参与人"
)
private
String
ztUserids
;
@ApiModelProperty
(
value
=
"是否禁言 0:否 1:是"
)
private
String
ztMute
;
@ApiModelProperty
(
value
=
"直播类型 1探普之夜,2探普八点半"
)
private
String
ztType
;
private
Integer
ztAppointmentNums
;
private
String
ztInfo
;
private
String
ztQrcode
;
private
String
ztFuli
;
@ApiModelProperty
(
value
=
"直播基数"
)
private
Integer
ztCardinal
;
@ApiModelProperty
(
value
=
"是否可分享"
)
private
String
ztIsshare
;
@ApiModelProperty
(
value
=
"是否收集用户信息,1收集,0不收集"
)
private
String
ztIscollectUserinfo
;
@ApiModelProperty
(
value
=
"是否开启手机号验证"
)
private
String
ztIsverificationPhone
;
private
String
ztExamid
;
@ApiModelProperty
(
value
=
"母直播间id"
)
private
String
parentId
;
@ApiModelProperty
(
value
=
"直播间类型 1母直播间,2子直播间"
)
private
Integer
roomType
;
@ApiModelProperty
(
value
=
"视屏类型 1视频,2音频"
)
private
Integer
videoType
;
@ApiModelProperty
(
value
=
"直播时长 显示 单位小时"
)
private
Double
durationSecondShow
;
@ApiModelProperty
(
value
=
"实际开始时间"
)
private
LocalDateTime
realStartTime
;
@ApiModelProperty
(
value
=
"真实结束时间"
)
private
LocalDateTime
realEndTime
;
@ApiModelProperty
(
value
=
"直播实际时长"
)
private
Integer
realDurationSecond
;
@ApiModelProperty
(
value
=
"是否可预约 1:需要预约 0:不需要预约"
)
private
Integer
reservation
;
@ApiModelProperty
(
value
=
"可转播设置 1:可转播 0:不可转播"
)
private
Integer
canBroadcast
;
@ApiModelProperty
(
value
=
"转播积分"
)
private
Integer
broadcastScore
;
@ApiModelProperty
(
value
=
"转播数量"
)
private
Integer
broadcastNum
;
@ApiModelProperty
(
value
=
"探普云参与权限0:所有人,1仅注册用户,2仅探普会员可进入,3需要密码,4仅基础营人员可进入"
)
private
Integer
participationRigth
;
@ApiModelProperty
(
value
=
"回放设置 0:不录制 1:录制"
)
private
Integer
replay
;
@ApiModelProperty
(
value
=
"开场白"
)
private
String
openingRemarks
;
@ApiModelProperty
(
value
=
"直播间头衔"
)
private
String
userTitle
;
@ApiModelProperty
(
value
=
"访客问候语"
)
private
String
guestGreetings
;
@ApiModelProperty
(
value
=
"是否给访客发送名片(0不发送 1发送) (-针对理财师)"
)
private
String
guestCard
;
@ApiModelProperty
(
value
=
"是否给访客发送微店(0不发送 1发送) (-针对理财师)"
)
private
String
guestWeShop
;
@ApiModelProperty
(
value
=
"一级好友问候语"
)
private
String
friendGreetings
;
@ApiModelProperty
(
value
=
"是否给好友发送微店(0不发送 1发送) (-针对理财师)"
)
private
String
friendCard
;
@ApiModelProperty
(
value
=
"是否给好友发送微店(0不发送 1发送) (-针对理财师)"
)
private
String
friendWeShop
;
@ApiModelProperty
(
value
=
"推荐到微店首页 1:可推荐 0:不可推荐"
)
private
Integer
recommendHomePage
;
@ApiModelProperty
(
value
=
"推荐到首页的时间"
)
private
LocalDateTime
recommendTime
;
@ApiModelProperty
(
value
=
"参与人数"
)
private
Integer
participantsNum
;
@ApiModelProperty
(
value
=
"在线人数"
)
private
Integer
onlineNum
;
@ApiModelProperty
(
value
=
"预约人数"
)
private
Integer
reservationNum
;
@ApiModelProperty
(
value
=
"已填信息表人数"
)
private
Integer
informationSheetNum
;
@ApiModelProperty
(
value
=
"回放人数"
)
private
Integer
replayNum
;
@ApiModelProperty
(
value
=
"短信模板id"
)
private
String
smsTemplateId
;
@ApiModelProperty
(
value
=
"主讲人描述,用于直播间主讲人描述"
)
private
String
managerName
;
@ApiModelProperty
(
value
=
"推荐到探普学堂首页 1:推荐 0:不推荐"
)
private
Integer
recommendHomeTanpu
;
@ApiModelProperty
(
value
=
"推荐首页(探普学堂)推荐时间"
)
private
LocalDateTime
recommendTimeTanpu
;
@ApiModelProperty
(
value
=
"参数人次 统计pv"
)
private
Integer
participantsPv
;
@ApiModelProperty
(
value
=
"子直播间参与人次累加"
)
private
Integer
participantsChildPv
;
@ApiModelProperty
(
value
=
"是否隐私直播间 0否 1是"
)
@TableField
(
"isPrivacy"
)
private
Integer
isprivacy
;
@ApiModelProperty
(
value
=
"群组状态 1:已创建 2:已销毁"
)
private
Integer
iscreateGroupSuccess
;
@ApiModelProperty
(
value
=
"在线人数峰值"
)
private
Integer
maxOnlineNum
;
@ApiModelProperty
(
value
=
"标签"
)
private
String
tags
;
@ApiModelProperty
(
value
=
"说明"
)
private
String
explain
;
@ApiModelProperty
(
value
=
"讲师id"
)
private
String
managerId
;
@ApiModelProperty
(
value
=
"0:不使用 1:使用讲师图"
)
private
Integer
bgStatus
;
@ApiModelProperty
(
value
=
"背景图地址"
)
private
String
bgImg
;
@ApiModelProperty
(
value
=
"0:没有试看 1:有试看"
)
private
Integer
seeStatus
;
@ApiModelProperty
(
value
=
"试看时长 单位 m"
)
private
Integer
seeLength
;
@ApiModelProperty
(
value
=
"方图"
)
private
String
squareImg
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getZtName
()
{
return
ztName
;
}
public
void
setZtName
(
String
ztName
)
{
this
.
ztName
=
ztName
;
}
public
LocalDateTime
getZtStarttime
()
{
return
ztStarttime
;
}
public
void
setZtStarttime
(
LocalDateTime
ztStarttime
)
{
this
.
ztStarttime
=
ztStarttime
;
}
public
LocalDateTime
getZtEndtime
()
{
return
ztEndtime
;
}
public
void
setZtEndtime
(
LocalDateTime
ztEndtime
)
{
this
.
ztEndtime
=
ztEndtime
;
}
public
String
getZtDesc
()
{
return
ztDesc
;
}
public
void
setZtDesc
(
String
ztDesc
)
{
this
.
ztDesc
=
ztDesc
;
}
public
String
getZtRoomnum
()
{
return
ztRoomnum
;
}
public
void
setZtRoomnum
(
String
ztRoomnum
)
{
this
.
ztRoomnum
=
ztRoomnum
;
}
public
LocalDateTime
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
LocalDateTime
createTime
)
{
this
.
createTime
=
createTime
;
}
public
String
getCreateBy
()
{
return
createBy
;
}
public
void
setCreateBy
(
String
createBy
)
{
this
.
createBy
=
createBy
;
}
public
LocalDateTime
getUpdateTime
()
{
return
updateTime
;
}
public
void
setUpdateTime
(
LocalDateTime
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
public
String
getUpdateBy
()
{
return
updateBy
;
}
public
void
setUpdateBy
(
String
updateBy
)
{
this
.
updateBy
=
updateBy
;
}
public
String
getDeletetag
()
{
return
deletetag
;
}
public
void
setDeletetag
(
String
deletetag
)
{
this
.
deletetag
=
deletetag
;
}
public
String
getZtStatus
()
{
return
ztStatus
;
}
public
void
setZtStatus
(
String
ztStatus
)
{
this
.
ztStatus
=
ztStatus
;
}
public
String
getZtBackimg
()
{
return
ztBackimg
;
}
public
void
setZtBackimg
(
String
ztBackimg
)
{
this
.
ztBackimg
=
ztBackimg
;
}
public
Integer
getSharePattern
()
{
return
sharePattern
;
}
public
void
setSharePattern
(
Integer
sharePattern
)
{
this
.
sharePattern
=
sharePattern
;
}
public
String
getZtImg
()
{
return
ztImg
;
}
public
void
setZtImg
(
String
ztImg
)
{
this
.
ztImg
=
ztImg
;
}
public
String
getBigImg
()
{
return
bigImg
;
}
public
void
setBigImg
(
String
bigImg
)
{
this
.
bigImg
=
bigImg
;
}
public
String
getZtIszhibo
()
{
return
ztIszhibo
;
}
public
void
setZtIszhibo
(
String
ztIszhibo
)
{
this
.
ztIszhibo
=
ztIszhibo
;
}
public
String
getZtProid
()
{
return
ztProid
;
}
public
void
setZtProid
(
String
ztProid
)
{
this
.
ztProid
=
ztProid
;
}
public
String
getZtUname
()
{
return
ztUname
;
}
public
void
setZtUname
(
String
ztUname
)
{
this
.
ztUname
=
ztUname
;
}
public
String
getZtFlag
()
{
return
ztFlag
;
}
public
void
setZtFlag
(
String
ztFlag
)
{
this
.
ztFlag
=
ztFlag
;
}
public
String
getOrgId
()
{
return
orgId
;
}
public
void
setOrgId
(
String
orgId
)
{
this
.
orgId
=
orgId
;
}
public
String
getZtPassword
()
{
return
ztPassword
;
}
public
void
setZtPassword
(
String
ztPassword
)
{
this
.
ztPassword
=
ztPassword
;
}
public
String
getZtLabel
()
{
return
ztLabel
;
}
public
void
setZtLabel
(
String
ztLabel
)
{
this
.
ztLabel
=
ztLabel
;
}
public
String
getZtUserids
()
{
return
ztUserids
;
}
public
void
setZtUserids
(
String
ztUserids
)
{
this
.
ztUserids
=
ztUserids
;
}
public
String
getZtMute
()
{
return
ztMute
;
}
public
void
setZtMute
(
String
ztMute
)
{
this
.
ztMute
=
ztMute
;
}
public
String
getZtType
()
{
return
ztType
;
}
public
void
setZtType
(
String
ztType
)
{
this
.
ztType
=
ztType
;
}
public
Integer
getZtAppointmentNums
()
{
return
ztAppointmentNums
;
}
public
void
setZtAppointmentNums
(
Integer
ztAppointmentNums
)
{
this
.
ztAppointmentNums
=
ztAppointmentNums
;
}
public
String
getZtInfo
()
{
return
ztInfo
;
}
public
void
setZtInfo
(
String
ztInfo
)
{
this
.
ztInfo
=
ztInfo
;
}
public
String
getZtQrcode
()
{
return
ztQrcode
;
}
public
void
setZtQrcode
(
String
ztQrcode
)
{
this
.
ztQrcode
=
ztQrcode
;
}
public
String
getZtFuli
()
{
return
ztFuli
;
}
public
void
setZtFuli
(
String
ztFuli
)
{
this
.
ztFuli
=
ztFuli
;
}
public
Integer
getZtCardinal
()
{
return
ztCardinal
;
}
public
void
setZtCardinal
(
Integer
ztCardinal
)
{
this
.
ztCardinal
=
ztCardinal
;
}
public
String
getZtIsshare
()
{
return
ztIsshare
;
}
public
void
setZtIsshare
(
String
ztIsshare
)
{
this
.
ztIsshare
=
ztIsshare
;
}
public
String
getZtIscollectUserinfo
()
{
return
ztIscollectUserinfo
;
}
public
void
setZtIscollectUserinfo
(
String
ztIscollectUserinfo
)
{
this
.
ztIscollectUserinfo
=
ztIscollectUserinfo
;
}
public
String
getZtIsverificationPhone
()
{
return
ztIsverificationPhone
;
}
public
void
setZtIsverificationPhone
(
String
ztIsverificationPhone
)
{
this
.
ztIsverificationPhone
=
ztIsverificationPhone
;
}
public
String
getZtExamid
()
{
return
ztExamid
;
}
public
void
setZtExamid
(
String
ztExamid
)
{
this
.
ztExamid
=
ztExamid
;
}
public
String
getParentId
()
{
return
parentId
;
}
public
void
setParentId
(
String
parentId
)
{
this
.
parentId
=
parentId
;
}
public
Integer
getRoomType
()
{
return
roomType
;
}
public
void
setRoomType
(
Integer
roomType
)
{
this
.
roomType
=
roomType
;
}
public
Integer
getVideoType
()
{
return
videoType
;
}
public
void
setVideoType
(
Integer
videoType
)
{
this
.
videoType
=
videoType
;
}
public
Double
getDurationSecondShow
()
{
return
durationSecondShow
;
}
public
void
setDurationSecondShow
(
Double
durationSecondShow
)
{
this
.
durationSecondShow
=
durationSecondShow
;
}
public
LocalDateTime
getRealStartTime
()
{
return
realStartTime
;
}
public
void
setRealStartTime
(
LocalDateTime
realStartTime
)
{
this
.
realStartTime
=
realStartTime
;
}
public
LocalDateTime
getRealEndTime
()
{
return
realEndTime
;
}
public
void
setRealEndTime
(
LocalDateTime
realEndTime
)
{
this
.
realEndTime
=
realEndTime
;
}
public
Integer
getRealDurationSecond
()
{
return
realDurationSecond
;
}
public
void
setRealDurationSecond
(
Integer
realDurationSecond
)
{
this
.
realDurationSecond
=
realDurationSecond
;
}
public
Integer
getReservation
()
{
return
reservation
;
}
public
void
setReservation
(
Integer
reservation
)
{
this
.
reservation
=
reservation
;
}
public
Integer
getCanBroadcast
()
{
return
canBroadcast
;
}
public
void
setCanBroadcast
(
Integer
canBroadcast
)
{
this
.
canBroadcast
=
canBroadcast
;
}
public
Integer
getBroadcastScore
()
{
return
broadcastScore
;
}
public
void
setBroadcastScore
(
Integer
broadcastScore
)
{
this
.
broadcastScore
=
broadcastScore
;
}
public
Integer
getBroadcastNum
()
{
return
broadcastNum
;
}
public
void
setBroadcastNum
(
Integer
broadcastNum
)
{
this
.
broadcastNum
=
broadcastNum
;
}
public
Integer
getParticipationRigth
()
{
return
participationRigth
;
}
public
void
setParticipationRigth
(
Integer
participationRigth
)
{
this
.
participationRigth
=
participationRigth
;
}
public
Integer
getReplay
()
{
return
replay
;
}
public
void
setReplay
(
Integer
replay
)
{
this
.
replay
=
replay
;
}
public
String
getOpeningRemarks
()
{
return
openingRemarks
;
}
public
void
setOpeningRemarks
(
String
openingRemarks
)
{
this
.
openingRemarks
=
openingRemarks
;
}
public
String
getUserTitle
()
{
return
userTitle
;
}
public
void
setUserTitle
(
String
userTitle
)
{
this
.
userTitle
=
userTitle
;
}
public
String
getGuestGreetings
()
{
return
guestGreetings
;
}
public
void
setGuestGreetings
(
String
guestGreetings
)
{
this
.
guestGreetings
=
guestGreetings
;
}
public
String
getGuestCard
()
{
return
guestCard
;
}
public
void
setGuestCard
(
String
guestCard
)
{
this
.
guestCard
=
guestCard
;
}
public
String
getGuestWeShop
()
{
return
guestWeShop
;
}
public
void
setGuestWeShop
(
String
guestWeShop
)
{
this
.
guestWeShop
=
guestWeShop
;
}
public
String
getFriendGreetings
()
{
return
friendGreetings
;
}
public
void
setFriendGreetings
(
String
friendGreetings
)
{
this
.
friendGreetings
=
friendGreetings
;
}
public
String
getFriendCard
()
{
return
friendCard
;
}
public
void
setFriendCard
(
String
friendCard
)
{
this
.
friendCard
=
friendCard
;
}
public
String
getFriendWeShop
()
{
return
friendWeShop
;
}
public
void
setFriendWeShop
(
String
friendWeShop
)
{
this
.
friendWeShop
=
friendWeShop
;
}
public
Integer
getRecommendHomePage
()
{
return
recommendHomePage
;
}
public
void
setRecommendHomePage
(
Integer
recommendHomePage
)
{
this
.
recommendHomePage
=
recommendHomePage
;
}
public
LocalDateTime
getRecommendTime
()
{
return
recommendTime
;
}
public
void
setRecommendTime
(
LocalDateTime
recommendTime
)
{
this
.
recommendTime
=
recommendTime
;
}
public
Integer
getParticipantsNum
()
{
return
participantsNum
;
}
public
void
setParticipantsNum
(
Integer
participantsNum
)
{
this
.
participantsNum
=
participantsNum
;
}
public
Integer
getOnlineNum
()
{
return
onlineNum
;
}
public
void
setOnlineNum
(
Integer
onlineNum
)
{
this
.
onlineNum
=
onlineNum
;
}
public
Integer
getReservationNum
()
{
return
reservationNum
;
}
public
void
setReservationNum
(
Integer
reservationNum
)
{
this
.
reservationNum
=
reservationNum
;
}
public
Integer
getInformationSheetNum
()
{
return
informationSheetNum
;
}
public
void
setInformationSheetNum
(
Integer
informationSheetNum
)
{
this
.
informationSheetNum
=
informationSheetNum
;
}
public
Integer
getReplayNum
()
{
return
replayNum
;
}
public
void
setReplayNum
(
Integer
replayNum
)
{
this
.
replayNum
=
replayNum
;
}
public
String
getSmsTemplateId
()
{
return
smsTemplateId
;
}
public
void
setSmsTemplateId
(
String
smsTemplateId
)
{
this
.
smsTemplateId
=
smsTemplateId
;
}
public
String
getManagerName
()
{
return
managerName
;
}
public
void
setManagerName
(
String
managerName
)
{
this
.
managerName
=
managerName
;
}
public
Integer
getRecommendHomeTanpu
()
{
return
recommendHomeTanpu
;
}
public
void
setRecommendHomeTanpu
(
Integer
recommendHomeTanpu
)
{
this
.
recommendHomeTanpu
=
recommendHomeTanpu
;
}
public
LocalDateTime
getRecommendTimeTanpu
()
{
return
recommendTimeTanpu
;
}
public
void
setRecommendTimeTanpu
(
LocalDateTime
recommendTimeTanpu
)
{
this
.
recommendTimeTanpu
=
recommendTimeTanpu
;
}
public
Integer
getParticipantsPv
()
{
return
participantsPv
;
}
public
void
setParticipantsPv
(
Integer
participantsPv
)
{
this
.
participantsPv
=
participantsPv
;
}
public
Integer
getParticipantsChildPv
()
{
return
participantsChildPv
;
}
public
void
setParticipantsChildPv
(
Integer
participantsChildPv
)
{
this
.
participantsChildPv
=
participantsChildPv
;
}
public
Integer
getIsprivacy
()
{
return
isprivacy
;
}
public
void
setIsprivacy
(
Integer
isprivacy
)
{
this
.
isprivacy
=
isprivacy
;
}
public
Integer
getIscreateGroupSuccess
()
{
return
iscreateGroupSuccess
;
}
public
void
setIscreateGroupSuccess
(
Integer
iscreateGroupSuccess
)
{
this
.
iscreateGroupSuccess
=
iscreateGroupSuccess
;
}
public
Integer
getMaxOnlineNum
()
{
return
maxOnlineNum
;
}
public
void
setMaxOnlineNum
(
Integer
maxOnlineNum
)
{
this
.
maxOnlineNum
=
maxOnlineNum
;
}
public
String
getTags
()
{
return
tags
;
}
public
void
setTags
(
String
tags
)
{
this
.
tags
=
tags
;
}
public
String
getExplain
()
{
return
explain
;
}
public
void
setExplain
(
String
explain
)
{
this
.
explain
=
explain
;
}
public
String
getManagerId
()
{
return
managerId
;
}
public
void
setManagerId
(
String
managerId
)
{
this
.
managerId
=
managerId
;
}
public
Integer
getBgStatus
()
{
return
bgStatus
;
}
public
void
setBgStatus
(
Integer
bgStatus
)
{
this
.
bgStatus
=
bgStatus
;
}
public
String
getBgImg
()
{
return
bgImg
;
}
public
void
setBgImg
(
String
bgImg
)
{
this
.
bgImg
=
bgImg
;
}
public
Integer
getSeeStatus
()
{
return
seeStatus
;
}
public
void
setSeeStatus
(
Integer
seeStatus
)
{
this
.
seeStatus
=
seeStatus
;
}
public
Integer
getSeeLength
()
{
return
seeLength
;
}
public
void
setSeeLength
(
Integer
seeLength
)
{
this
.
seeLength
=
seeLength
;
}
public
String
getSquareImg
()
{
return
squareImg
;
}
public
void
setSquareImg
(
String
squareImg
)
{
this
.
squareImg
=
squareImg
;
}
@Override
public
String
toString
()
{
return
"ZhiboThemeEntity{"
+
"id="
+
id
+
", ztName="
+
ztName
+
", ztStarttime="
+
ztStarttime
+
", ztEndtime="
+
ztEndtime
+
", ztDesc="
+
ztDesc
+
", ztRoomnum="
+
ztRoomnum
+
", createTime="
+
createTime
+
", createBy="
+
createBy
+
", updateTime="
+
updateTime
+
", updateBy="
+
updateBy
+
", deletetag="
+
deletetag
+
", ztStatus="
+
ztStatus
+
", ztBackimg="
+
ztBackimg
+
", sharePattern="
+
sharePattern
+
", ztImg="
+
ztImg
+
", bigImg="
+
bigImg
+
", ztIszhibo="
+
ztIszhibo
+
", ztProid="
+
ztProid
+
", ztUname="
+
ztUname
+
", ztFlag="
+
ztFlag
+
", orgId="
+
orgId
+
", ztPassword="
+
ztPassword
+
", ztLabel="
+
ztLabel
+
", ztUserids="
+
ztUserids
+
", ztMute="
+
ztMute
+
", ztType="
+
ztType
+
", ztAppointmentNums="
+
ztAppointmentNums
+
", ztInfo="
+
ztInfo
+
", ztQrcode="
+
ztQrcode
+
", ztFuli="
+
ztFuli
+
", ztCardinal="
+
ztCardinal
+
", ztIsshare="
+
ztIsshare
+
", ztIscollectUserinfo="
+
ztIscollectUserinfo
+
", ztIsverificationPhone="
+
ztIsverificationPhone
+
", ztExamid="
+
ztExamid
+
", parentId="
+
parentId
+
", roomType="
+
roomType
+
", videoType="
+
videoType
+
", durationSecondShow="
+
durationSecondShow
+
", realStartTime="
+
realStartTime
+
", realEndTime="
+
realEndTime
+
", realDurationSecond="
+
realDurationSecond
+
", reservation="
+
reservation
+
", canBroadcast="
+
canBroadcast
+
", broadcastScore="
+
broadcastScore
+
", broadcastNum="
+
broadcastNum
+
", participationRigth="
+
participationRigth
+
", replay="
+
replay
+
", openingRemarks="
+
openingRemarks
+
", userTitle="
+
userTitle
+
", guestGreetings="
+
guestGreetings
+
", guestCard="
+
guestCard
+
", guestWeShop="
+
guestWeShop
+
", friendGreetings="
+
friendGreetings
+
", friendCard="
+
friendCard
+
", friendWeShop="
+
friendWeShop
+
", recommendHomePage="
+
recommendHomePage
+
", recommendTime="
+
recommendTime
+
", participantsNum="
+
participantsNum
+
", onlineNum="
+
onlineNum
+
", reservationNum="
+
reservationNum
+
", informationSheetNum="
+
informationSheetNum
+
", replayNum="
+
replayNum
+
", smsTemplateId="
+
smsTemplateId
+
", managerName="
+
managerName
+
", recommendHomeTanpu="
+
recommendHomeTanpu
+
", recommendTimeTanpu="
+
recommendTimeTanpu
+
", participantsPv="
+
participantsPv
+
", participantsChildPv="
+
participantsChildPv
+
", isprivacy="
+
isprivacy
+
", iscreateGroupSuccess="
+
iscreateGroupSuccess
+
", maxOnlineNum="
+
maxOnlineNum
+
", tags="
+
tags
+
", explain="
+
explain
+
", managerId="
+
managerId
+
", bgStatus="
+
bgStatus
+
", bgImg="
+
bgImg
+
", seeStatus="
+
seeStatus
+
", seeLength="
+
seeLength
+
", squareImg="
+
squareImg
+
"}"
;
}
}
community-service/src/main/java/com/tanpu/community/dao/mapper/zhibo/ZhiboThemeMapper.java
deleted
100644 → 0
View file @
85dfcd85
package
com
.
tanpu
.
community
.
dao
.
mapper
.
zhibo
;
import
com.tanpu.community.dao.entity.zhibo.ZhiboThemeEntity
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
/**
* <p>
* 直播间信息表 Mapper 接口
* </p>
*
* @author xudong
* @since 2021-06-23
*/
public
interface
ZhiboThemeMapper
extends
BaseMapper
<
ZhiboThemeEntity
>
{
}
community-service/src/main/resources/application-dev.yml
View file @
14e76bea
...
...
@@ -20,13 +20,13 @@ spring.datasource:
maxActive
:
2
minIdle
:
2
initialSize
:
2
user
:
driver-class-name
:
com.mysql.cj.jdbc.Driver
jdbc-url
:
jdbc:mysql://rm-uf6r22t3d798q4kmkao.mysql.rds.aliyuncs.com:3306/tamp_user?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull
password
:
'
@imeng123'
maxActive
:
2
minIdle
:
2
initialSize
:
2
#
user:
#
driver-class-name: com.mysql.cj.jdbc.Driver
#
jdbc-url: jdbc:mysql://rm-uf6r22t3d798q4kmkao.mysql.rds.aliyuncs.com:3306/tamp_user?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull
#
password: '@imeng123'
#
maxActive: 2
#
minIdle: 2
#
initialSize: 2
spring.redis
:
host
:
118.190.63.109
...
...
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