Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-cloud-account
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
1
合并请求
1
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.account
pica-cloud-account
提交
350459e9
提交
350459e9
编写于
8月 27, 2019
作者:
rushui.chen
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
201490827 代码骨架
上级
ced1f707
流水线
#13697
已失败 于阶段
in 0 second
变更
30
流水线
1
展开全部
显示空白字符变更
内嵌
并排
正在显示
30 个修改的文件
包含
3437 行增加
和
0 行删除
+3437
-0
LoginController.java
...ud/account/account/server/controller/LoginController.java
+10
-0
RegisterController.java
...account/account/server/controller/RegisterController.java
+10
-0
SysCodeController.java
.../account/account/server/controller/SysCodeController.java
+9
-0
UserInfoController.java
...account/account/server/controller/UserInfoController.java
+9
-0
AccountInfoEntity.java
...loud/account/account/server/entity/AccountInfoEntity.java
+165
-0
AccountUnionEntity.java
...oud/account/account/server/entity/AccountUnionEntity.java
+165
-0
AccountUserInfoEntity.java
.../account/account/server/entity/AccountUserInfoEntity.java
+295
-0
AccountWeChatInfoEntity.java
...ccount/account/server/entity/AccountWeChatInfoEntity.java
+155
-0
LogLoginEntity.java
...a/cloud/account/account/server/entity/LogLoginEntity.java
+147
-0
LogPWDModifyEntity.java
...oud/account/account/server/entity/LogPWDModifyEntity.java
+97
-0
LogUserInfoEntity.java
...loud/account/account/server/entity/LogUserInfoEntity.java
+297
-0
EnumsType.java
...om/pica/cloud/account/account/server/enums/EnumsType.java
+67
-0
ExceptionType.java
...ica/cloud/account/account/server/enums/ExceptionType.java
+41
-0
PicaLogEntity.java
.../pica/cloud/account/account/server/log/PicaLogEntity.java
+18
-0
PicaLogTask.java
...om/pica/cloud/account/account/server/log/PicaLogTask.java
+51
-0
PicaLogUtils.java
...m/pica/cloud/account/account/server/log/PicaLogUtils.java
+24
-0
AccountInfoDetailMapper.java
...ccount/account/server/mapper/AccountInfoDetailMapper.java
+18
-0
AccountUnionMapper.java
...oud/account/account/server/mapper/AccountUnionMapper.java
+18
-0
AccountUserInfoMapper.java
.../account/account/server/mapper/AccountUserInfoMapper.java
+18
-0
AccountWeChatInfoMapper.java
...ccount/account/server/mapper/AccountWeChatInfoMapper.java
+18
-0
LogLoginMapper.java
...a/cloud/account/account/server/mapper/LogLoginMapper.java
+18
-0
LogPWDModifyMapper.java
...oud/account/account/server/mapper/LogPWDModifyMapper.java
+18
-0
LogUserInfoMapper.java
...loud/account/account/server/mapper/LogUserInfoMapper.java
+18
-0
AccountInfoEntityMapper.xml
...er/src/main/resources/mybatis/AccountInfoEntityMapper.xml
+223
-0
AccountUnionEntityMapper.xml
...r/src/main/resources/mybatis/AccountUnionEntityMapper.xml
+223
-0
AccountUserInfoEntityMapper.xml
...rc/main/resources/mybatis/AccountUserInfoEntityMapper.xml
+376
-0
AccountWeChatInfoEntityMapper.xml
.../main/resources/mybatis/AccountWeChatInfoEntityMapper.xml
+212
-0
LogLoginEntityMapper.xml
server/src/main/resources/mybatis/LogLoginEntityMapper.xml
+199
-0
LogPWDModifyEntityMapper.xml
...r/src/main/resources/mybatis/LogPWDModifyEntityMapper.xml
+142
-0
LogUserInfoEntityMapper.xml
...er/src/main/resources/mybatis/LogUserInfoEntityMapper.xml
+376
-0
未找到文件。
server/src/main/java/com/pica/cloud/account/account/server/controller/LoginController.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
controller
;
import
io.swagger.annotations.Api
;
import
org.springframework.web.bind.annotation.RestController
;
@Api
(
"登录资源"
)
@RestController
public
class
LoginController
{
}
server/src/main/java/com/pica/cloud/account/account/server/controller/RegisterController.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
controller
;
import
io.swagger.annotations.Api
;
import
org.springframework.web.bind.annotation.RestController
;
@Api
(
"注册资源"
)
@RestController
public
class
RegisterController
{
}
server/src/main/java/com/pica/cloud/account/account/server/controller/SysCodeController.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
controller
;
import
io.swagger.annotations.Api
;
import
org.springframework.web.bind.annotation.RestController
;
@Api
(
"短信验证码资源"
)
@RestController
public
class
SysCodeController
{
}
server/src/main/java/com/pica/cloud/account/account/server/controller/UserInfoController.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
controller
;
import
io.swagger.annotations.Api
;
import
org.springframework.web.bind.annotation.RestController
;
@Api
(
"用户信息资源"
)
@RestController
public
class
UserInfoController
{
}
server/src/main/java/com/pica/cloud/account/account/server/entity/AccountInfoEntity.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
entity
;
import
java.util.Date
;
public
class
AccountInfoEntity
{
private
Integer
id
;
private
String
mobilePhone
;
private
String
password
;
private
Integer
registerProduct
;
private
Integer
registerSource
;
private
String
name
;
private
int
age
;
private
Date
birthday
;
private
Byte
sex
;
private
String
idCard
;
private
Date
regTime
;
private
Integer
deleteFlag
;
private
Integer
createdId
;
private
Date
createdTime
;
private
Integer
modifiedId
;
private
Date
modifiedTime
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
String
getMobilePhone
()
{
return
mobilePhone
;
}
public
void
setMobilePhone
(
String
mobilePhone
)
{
this
.
mobilePhone
=
mobilePhone
;
}
public
String
getPassword
()
{
return
password
;
}
public
void
setPassword
(
String
password
)
{
this
.
password
=
password
;
}
public
Integer
getRegisterProduct
()
{
return
registerProduct
;
}
public
void
setRegisterProduct
(
Integer
registerProduct
)
{
this
.
registerProduct
=
registerProduct
;
}
public
Integer
getRegisterSource
()
{
return
registerSource
;
}
public
void
setRegisterSource
(
Integer
registerSource
)
{
this
.
registerSource
=
registerSource
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
int
getAge
()
{
return
age
;
}
public
void
setAge
(
int
age
)
{
this
.
age
=
age
;
}
public
Date
getBirthday
()
{
return
birthday
;
}
public
void
setBirthday
(
Date
birthday
)
{
this
.
birthday
=
birthday
;
}
public
Byte
getSex
()
{
return
sex
;
}
public
void
setSex
(
Byte
sex
)
{
this
.
sex
=
sex
;
}
public
String
getIdCard
()
{
return
idCard
;
}
public
void
setIdCard
(
String
idCard
)
{
this
.
idCard
=
idCard
;
}
public
Date
getRegTime
()
{
return
regTime
;
}
public
void
setRegTime
(
Date
regTime
)
{
this
.
regTime
=
regTime
;
}
public
Integer
getDeleteFlag
()
{
return
deleteFlag
;
}
public
void
setDeleteFlag
(
Integer
deleteFlag
)
{
this
.
deleteFlag
=
deleteFlag
;
}
public
Integer
getCreatedId
()
{
return
createdId
;
}
public
void
setCreatedId
(
Integer
createdId
)
{
this
.
createdId
=
createdId
;
}
public
Date
getCreatedTime
()
{
return
createdTime
;
}
public
void
setCreatedTime
(
Date
createdTime
)
{
this
.
createdTime
=
createdTime
;
}
public
Integer
getModifiedId
()
{
return
modifiedId
;
}
public
void
setModifiedId
(
Integer
modifiedId
)
{
this
.
modifiedId
=
modifiedId
;
}
public
Date
getModifiedTime
()
{
return
modifiedTime
;
}
public
void
setModifiedTime
(
Date
modifiedTime
)
{
this
.
modifiedTime
=
modifiedTime
;
}
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/entity/AccountUnionEntity.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
entity
;
import
java.util.Date
;
public
class
AccountUnionEntity
{
private
Integer
id
;
private
Long
acctId
;
private
Integer
unionType
;
private
String
unionId
;
private
String
nickname
;
private
String
headImgUrl
;
private
int
sex
;
private
String
country
;
private
String
province
;
private
String
city
;
private
String
language
;
private
Integer
deleteFlag
;
private
Integer
createdId
;
private
Date
createdTime
;
private
Integer
modifiedId
;
private
Date
modifiedTime
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
Long
getAcctId
()
{
return
acctId
;
}
public
void
setAcctId
(
Long
acctId
)
{
this
.
acctId
=
acctId
;
}
public
Integer
getUnionType
()
{
return
unionType
;
}
public
void
setUnionType
(
Integer
unionType
)
{
this
.
unionType
=
unionType
;
}
public
String
getUnionId
()
{
return
unionId
;
}
public
void
setUnionId
(
String
unionId
)
{
this
.
unionId
=
unionId
==
null
?
null
:
unionId
.
trim
();
}
public
String
getNickname
()
{
return
nickname
;
}
public
void
setNickname
(
String
nickname
)
{
this
.
nickname
=
nickname
==
null
?
null
:
nickname
.
trim
();
}
public
String
getHeadImgUrl
()
{
return
headImgUrl
;
}
public
void
setHeadImgUrl
(
String
headImgUrl
)
{
this
.
headImgUrl
=
headImgUrl
==
null
?
null
:
headImgUrl
.
trim
();
}
public
int
getSex
()
{
return
sex
;
}
public
void
setSex
(
int
sex
)
{
this
.
sex
=
sex
;
}
public
String
getCountry
()
{
return
country
;
}
public
void
setCountry
(
String
country
)
{
this
.
country
=
country
==
null
?
null
:
country
.
trim
();
}
public
String
getProvince
()
{
return
province
;
}
public
void
setProvince
(
String
province
)
{
this
.
province
=
province
==
null
?
null
:
province
.
trim
();
}
public
String
getCity
()
{
return
city
;
}
public
void
setCity
(
String
city
)
{
this
.
city
=
city
==
null
?
null
:
city
.
trim
();
}
public
String
getLanguage
()
{
return
language
;
}
public
void
setLanguage
(
String
language
)
{
this
.
language
=
language
==
null
?
null
:
language
.
trim
();
}
public
Integer
getDeleteFlag
()
{
return
deleteFlag
;
}
public
void
setDeleteFlag
(
Integer
deleteFlag
)
{
this
.
deleteFlag
=
deleteFlag
;
}
public
Integer
getCreatedId
()
{
return
createdId
;
}
public
void
setCreatedId
(
Integer
createdId
)
{
this
.
createdId
=
createdId
;
}
public
Date
getCreatedTime
()
{
return
createdTime
;
}
public
void
setCreatedTime
(
Date
createdTime
)
{
this
.
createdTime
=
createdTime
;
}
public
Integer
getModifiedId
()
{
return
modifiedId
;
}
public
void
setModifiedId
(
Integer
modifiedId
)
{
this
.
modifiedId
=
modifiedId
;
}
public
Date
getModifiedTime
()
{
return
modifiedTime
;
}
public
void
setModifiedTime
(
Date
modifiedTime
)
{
this
.
modifiedTime
=
modifiedTime
;
}
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/entity/AccountUserInfoEntity.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
entity
;
import
java.util.Date
;
public
class
AccountUserInfoEntity
{
private
Integer
id
;
private
Integer
acctId
;
private
String
villageName
;
private
Long
villageId
;
private
String
townName
;
private
Long
townId
;
private
String
countyName
;
private
Long
countyId
;
private
String
cityName
;
private
Long
cityId
;
private
String
provinceName
;
private
Long
provinceId
;
private
Long
country
;
private
String
headImgUrl
;
private
String
address
;
private
String
patientAddress
;
private
String
telephone
;
private
String
socialCard
;
private
String
workUnit
;
private
String
healthFileNumber
;
private
String
paymentType
;
private
String
remarks
;
private
String
email
;
private
String
nation
;
private
Integer
createId
;
private
Date
createTime
;
private
Integer
modifyId
;
private
Date
modifyTime
;
private
int
deleteFlag
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
Integer
getAcctId
()
{
return
acctId
;
}
public
void
setAcctId
(
Integer
acctId
)
{
this
.
acctId
=
acctId
;
}
public
String
getVillageName
()
{
return
villageName
;
}
public
void
setVillageName
(
String
villageName
)
{
this
.
villageName
=
villageName
==
null
?
null
:
villageName
.
trim
();
}
public
Long
getVillageId
()
{
return
villageId
;
}
public
void
setVillageId
(
Long
villageId
)
{
this
.
villageId
=
villageId
;
}
public
String
getTownName
()
{
return
townName
;
}
public
void
setTownName
(
String
townName
)
{
this
.
townName
=
townName
==
null
?
null
:
townName
.
trim
();
}
public
Long
getTownId
()
{
return
townId
;
}
public
void
setTownId
(
Long
townId
)
{
this
.
townId
=
townId
;
}
public
String
getCountyName
()
{
return
countyName
;
}
public
void
setCountyName
(
String
countyName
)
{
this
.
countyName
=
countyName
==
null
?
null
:
countyName
.
trim
();
}
public
Long
getCountyId
()
{
return
countyId
;
}
public
void
setCountyId
(
Long
countyId
)
{
this
.
countyId
=
countyId
;
}
public
String
getCityName
()
{
return
cityName
;
}
public
void
setCityName
(
String
cityName
)
{
this
.
cityName
=
cityName
==
null
?
null
:
cityName
.
trim
();
}
public
Long
getCityId
()
{
return
cityId
;
}
public
void
setCityId
(
Long
cityId
)
{
this
.
cityId
=
cityId
;
}
public
String
getProvinceName
()
{
return
provinceName
;
}
public
void
setProvinceName
(
String
provinceName
)
{
this
.
provinceName
=
provinceName
==
null
?
null
:
provinceName
.
trim
();
}
public
Long
getProvinceId
()
{
return
provinceId
;
}
public
void
setProvinceId
(
Long
provinceId
)
{
this
.
provinceId
=
provinceId
;
}
public
Long
getCountry
()
{
return
country
;
}
public
void
setCountry
(
Long
country
)
{
this
.
country
=
country
;
}
public
String
getHeadImgUrl
()
{
return
headImgUrl
;
}
public
void
setHeadImgUrl
(
String
headImgUrl
)
{
this
.
headImgUrl
=
headImgUrl
==
null
?
null
:
headImgUrl
.
trim
();
}
public
String
getAddress
()
{
return
address
;
}
public
void
setAddress
(
String
address
)
{
this
.
address
=
address
==
null
?
null
:
address
.
trim
();
}
public
String
getPatientAddress
()
{
return
patientAddress
;
}
public
void
setPatientAddress
(
String
patientAddress
)
{
this
.
patientAddress
=
patientAddress
==
null
?
null
:
patientAddress
.
trim
();
}
public
String
getTelephone
()
{
return
telephone
;
}
public
void
setTelephone
(
String
telephone
)
{
this
.
telephone
=
telephone
==
null
?
null
:
telephone
.
trim
();
}
public
String
getSocialCard
()
{
return
socialCard
;
}
public
void
setSocialCard
(
String
socialCard
)
{
this
.
socialCard
=
socialCard
==
null
?
null
:
socialCard
.
trim
();
}
public
String
getWorkUnit
()
{
return
workUnit
;
}
public
void
setWorkUnit
(
String
workUnit
)
{
this
.
workUnit
=
workUnit
==
null
?
null
:
workUnit
.
trim
();
}
public
String
getHealthFileNumber
()
{
return
healthFileNumber
;
}
public
void
setHealthFileNumber
(
String
healthFileNumber
)
{
this
.
healthFileNumber
=
healthFileNumber
==
null
?
null
:
healthFileNumber
.
trim
();
}
public
String
getPaymentType
()
{
return
paymentType
;
}
public
void
setPaymentType
(
String
paymentType
)
{
this
.
paymentType
=
paymentType
==
null
?
null
:
paymentType
.
trim
();
}
public
String
getRemarks
()
{
return
remarks
;
}
public
void
setRemarks
(
String
remarks
)
{
this
.
remarks
=
remarks
==
null
?
null
:
remarks
.
trim
();
}
public
String
getEmail
()
{
return
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
==
null
?
null
:
email
.
trim
();
}
public
String
getNation
()
{
return
nation
;
}
public
void
setNation
(
String
nation
)
{
this
.
nation
=
nation
==
null
?
null
:
nation
.
trim
();
}
public
Integer
getCreateId
()
{
return
createId
;
}
public
void
setCreateId
(
Integer
createId
)
{
this
.
createId
=
createId
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
public
Integer
getModifyId
()
{
return
modifyId
;
}
public
void
setModifyId
(
Integer
modifyId
)
{
this
.
modifyId
=
modifyId
;
}
public
Date
getModifyTime
()
{
return
modifyTime
;
}
public
void
setModifyTime
(
Date
modifyTime
)
{
this
.
modifyTime
=
modifyTime
;
}
public
int
getDeleteFlag
()
{
return
deleteFlag
;
}
public
void
setDeleteFlag
(
int
deleteFlag
)
{
this
.
deleteFlag
=
deleteFlag
;
}
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/entity/AccountWeChatInfoEntity.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
entity
;
import
java.util.Date
;
public
class
AccountWeChatInfoEntity
{
private
Integer
id
;
private
String
unionid
;
private
String
openid
;
private
Integer
type
;
private
String
privilege
;
private
Integer
subscribe
;
private
Date
subscribeTime
;
private
String
remark
;
private
String
groupid
;
private
String
tagidList
;
private
Integer
deleteFlag
;
private
Integer
createdId
;
private
Date
createdTime
;
private
Integer
modifiedId
;
private
Date
modifiedTime
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
String
getUnionid
()
{
return
unionid
;
}
public
void
setUnionid
(
String
unionid
)
{
this
.
unionid
=
unionid
==
null
?
null
:
unionid
.
trim
();
}
public
String
getOpenid
()
{
return
openid
;
}
public
void
setOpenid
(
String
openid
)
{
this
.
openid
=
openid
==
null
?
null
:
openid
.
trim
();
}
public
Integer
getType
()
{
return
type
;
}
public
void
setType
(
Integer
type
)
{
this
.
type
=
type
;
}
public
String
getPrivilege
()
{
return
privilege
;
}
public
void
setPrivilege
(
String
privilege
)
{
this
.
privilege
=
privilege
==
null
?
null
:
privilege
.
trim
();
}
public
Integer
getSubscribe
()
{
return
subscribe
;
}
public
void
setSubscribe
(
Integer
subscribe
)
{
this
.
subscribe
=
subscribe
;
}
public
Date
getSubscribeTime
()
{
return
subscribeTime
;
}
public
void
setSubscribeTime
(
Date
subscribeTime
)
{
this
.
subscribeTime
=
subscribeTime
;
}
public
String
getRemark
()
{
return
remark
;
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
==
null
?
null
:
remark
.
trim
();
}
public
String
getGroupid
()
{
return
groupid
;
}
public
void
setGroupid
(
String
groupid
)
{
this
.
groupid
=
groupid
==
null
?
null
:
groupid
.
trim
();
}
public
String
getTagidList
()
{
return
tagidList
;
}
public
void
setTagidList
(
String
tagidList
)
{
this
.
tagidList
=
tagidList
==
null
?
null
:
tagidList
.
trim
();
}
public
Integer
getDeleteFlag
()
{
return
deleteFlag
;
}
public
void
setDeleteFlag
(
Integer
deleteFlag
)
{
this
.
deleteFlag
=
deleteFlag
;
}
public
Integer
getCreatedId
()
{
return
createdId
;
}
public
void
setCreatedId
(
Integer
createdId
)
{
this
.
createdId
=
createdId
;
}
public
Date
getCreatedTime
()
{
return
createdTime
;
}
public
void
setCreatedTime
(
Date
createdTime
)
{
this
.
createdTime
=
createdTime
;
}
public
Integer
getModifiedId
()
{
return
modifiedId
;
}
public
void
setModifiedId
(
Integer
modifiedId
)
{
this
.
modifiedId
=
modifiedId
;
}
public
Date
getModifiedTime
()
{
return
modifiedTime
;
}
public
void
setModifiedTime
(
Date
modifiedTime
)
{
this
.
modifiedTime
=
modifiedTime
;
}
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/entity/LogLoginEntity.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
entity
;
import
com.pica.cloud.account.account.server.log.PicaLogEntity
;
import
java.util.Date
;
public
class
LogLoginEntity
extends
PicaLogEntity
{
private
Integer
id
;
private
Integer
acctId
;
private
String
acctName
;
private
int
productType
;
private
int
sourceType
;
private
int
loginType
;
private
String
loginIp
;
private
Date
loginTime
;
private
int
loginStatus
;
private
Integer
createId
;
private
Date
createTime
;
private
Integer
modifyId
;
private
Date
modifyTime
;
private
int
deleteFlag
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
Integer
getAcctId
()
{
return
acctId
;
}
public
void
setAcctId
(
Integer
acctId
)
{
this
.
acctId
=
acctId
;
}
public
String
getAcctName
()
{
return
acctName
;
}
public
void
setAcctName
(
String
acctName
)
{
this
.
acctName
=
acctName
;
}
public
int
getProductType
()
{
return
productType
;
}
public
void
setProductType
(
int
productType
)
{
this
.
productType
=
productType
;
}
public
int
getSourceType
()
{
return
sourceType
;
}
public
void
setSourceType
(
int
sourceType
)
{
this
.
sourceType
=
sourceType
;
}
public
int
getLoginType
()
{
return
loginType
;
}
public
void
setLoginType
(
int
loginType
)
{
this
.
loginType
=
loginType
;
}
public
String
getLoginIp
()
{
return
loginIp
;
}
public
void
setLoginIp
(
String
loginIp
)
{
this
.
loginIp
=
loginIp
;
}
public
Date
getLoginTime
()
{
return
loginTime
;
}
public
void
setLoginTime
(
Date
loginTime
)
{
this
.
loginTime
=
loginTime
;
}
public
int
getLoginStatus
()
{
return
loginStatus
;
}
public
void
setLoginStatus
(
int
loginStatus
)
{
this
.
loginStatus
=
loginStatus
;
}
public
Integer
getCreateId
()
{
return
createId
;
}
public
void
setCreateId
(
Integer
createId
)
{
this
.
createId
=
createId
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
public
Integer
getModifyId
()
{
return
modifyId
;
}
public
void
setModifyId
(
Integer
modifyId
)
{
this
.
modifyId
=
modifyId
;
}
public
Date
getModifyTime
()
{
return
modifyTime
;
}
public
void
setModifyTime
(
Date
modifyTime
)
{
this
.
modifyTime
=
modifyTime
;
}
public
int
getDeleteFlag
()
{
return
deleteFlag
;
}
public
void
setDeleteFlag
(
int
deleteFlag
)
{
this
.
deleteFlag
=
deleteFlag
;
}
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/entity/LogPWDModifyEntity.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
entity
;
import
com.pica.cloud.account.account.server.log.PicaLogEntity
;
import
java.util.Date
;
public
class
LogPWDModifyEntity
extends
PicaLogEntity
{
private
Integer
id
;
private
String
mobilePhone
;
private
Date
modifiedTime
;
private
Integer
modifiedId
;
private
String
oldPwd
;
private
String
newPwd
;
private
Integer
deleteFlag
;
private
Integer
createdId
;
private
Date
createdTime
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
String
getMobilePhone
()
{
return
mobilePhone
;
}
public
void
setMobilePhone
(
String
mobilePhone
)
{
this
.
mobilePhone
=
mobilePhone
==
null
?
null
:
mobilePhone
.
trim
();
}
public
Date
getModifiedTime
()
{
return
modifiedTime
;
}
public
void
setModifiedTime
(
Date
modifiedTime
)
{
this
.
modifiedTime
=
modifiedTime
;
}
public
Integer
getModifiedId
()
{
return
modifiedId
;
}
public
void
setModifiedId
(
Integer
modifiedId
)
{
this
.
modifiedId
=
modifiedId
;
}
public
String
getOldPwd
()
{
return
oldPwd
;
}
public
void
setOldPwd
(
String
oldPwd
)
{
this
.
oldPwd
=
oldPwd
==
null
?
null
:
oldPwd
.
trim
();
}
public
String
getNewPwd
()
{
return
newPwd
;
}
public
void
setNewPwd
(
String
newPwd
)
{
this
.
newPwd
=
newPwd
==
null
?
null
:
newPwd
.
trim
();
}
public
Integer
getDeleteFlag
()
{
return
deleteFlag
;
}
public
void
setDeleteFlag
(
Integer
deleteFlag
)
{
this
.
deleteFlag
=
deleteFlag
;
}
public
Integer
getCreatedId
()
{
return
createdId
;
}
public
void
setCreatedId
(
Integer
createdId
)
{
this
.
createdId
=
createdId
;
}
public
Date
getCreatedTime
()
{
return
createdTime
;
}
public
void
setCreatedTime
(
Date
createdTime
)
{
this
.
createdTime
=
createdTime
;
}
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/entity/LogUserInfoEntity.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
entity
;
import
com.pica.cloud.account.account.server.log.PicaLogEntity
;
import
java.util.Date
;
public
class
LogUserInfoEntity
extends
PicaLogEntity
{
private
Integer
id
;
private
Integer
acctId
;
private
String
villageName
;
private
Long
villageId
;
private
String
townName
;
private
Long
townId
;
private
String
countyName
;
private
Long
countyId
;
private
String
cityName
;
private
Long
cityId
;
private
String
provinceName
;
private
Long
provinceId
;
private
Long
country
;
private
String
headImgUrl
;
private
String
address
;
private
String
patientAddress
;
private
String
telephone
;
private
String
socialCard
;
private
String
workUnit
;
private
String
healthFileNumber
;
private
String
paymentType
;
private
String
remarks
;
private
String
email
;
private
String
nation
;
private
Integer
createId
;
private
Date
createTime
;
private
Integer
modifyId
;
private
Date
modifyTime
;
private
int
deleteFlag
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
Integer
getAcctId
()
{
return
acctId
;
}
public
void
setAcctId
(
Integer
acctId
)
{
this
.
acctId
=
acctId
;
}
public
String
getVillageName
()
{
return
villageName
;
}
public
void
setVillageName
(
String
villageName
)
{
this
.
villageName
=
villageName
==
null
?
null
:
villageName
.
trim
();
}
public
Long
getVillageId
()
{
return
villageId
;
}
public
void
setVillageId
(
Long
villageId
)
{
this
.
villageId
=
villageId
;
}
public
String
getTownName
()
{
return
townName
;
}
public
void
setTownName
(
String
townName
)
{
this
.
townName
=
townName
==
null
?
null
:
townName
.
trim
();
}
public
Long
getTownId
()
{
return
townId
;
}
public
void
setTownId
(
Long
townId
)
{
this
.
townId
=
townId
;
}
public
String
getCountyName
()
{
return
countyName
;
}
public
void
setCountyName
(
String
countyName
)
{
this
.
countyName
=
countyName
==
null
?
null
:
countyName
.
trim
();
}
public
Long
getCountyId
()
{
return
countyId
;
}
public
void
setCountyId
(
Long
countyId
)
{
this
.
countyId
=
countyId
;
}
public
String
getCityName
()
{
return
cityName
;
}
public
void
setCityName
(
String
cityName
)
{
this
.
cityName
=
cityName
==
null
?
null
:
cityName
.
trim
();
}
public
Long
getCityId
()
{
return
cityId
;
}
public
void
setCityId
(
Long
cityId
)
{
this
.
cityId
=
cityId
;
}
public
String
getProvinceName
()
{
return
provinceName
;
}
public
void
setProvinceName
(
String
provinceName
)
{
this
.
provinceName
=
provinceName
==
null
?
null
:
provinceName
.
trim
();
}
public
Long
getProvinceId
()
{
return
provinceId
;
}
public
void
setProvinceId
(
Long
provinceId
)
{
this
.
provinceId
=
provinceId
;
}
public
Long
getCountry
()
{
return
country
;
}
public
void
setCountry
(
Long
country
)
{
this
.
country
=
country
;
}
public
String
getHeadImgUrl
()
{
return
headImgUrl
;
}
public
void
setHeadImgUrl
(
String
headImgUrl
)
{
this
.
headImgUrl
=
headImgUrl
==
null
?
null
:
headImgUrl
.
trim
();
}
public
String
getAddress
()
{
return
address
;
}
public
void
setAddress
(
String
address
)
{
this
.
address
=
address
==
null
?
null
:
address
.
trim
();
}
public
String
getPatientAddress
()
{
return
patientAddress
;
}
public
void
setPatientAddress
(
String
patientAddress
)
{
this
.
patientAddress
=
patientAddress
==
null
?
null
:
patientAddress
.
trim
();
}
public
String
getTelephone
()
{
return
telephone
;
}
public
void
setTelephone
(
String
telephone
)
{
this
.
telephone
=
telephone
==
null
?
null
:
telephone
.
trim
();
}
public
String
getSocialCard
()
{
return
socialCard
;
}
public
void
setSocialCard
(
String
socialCard
)
{
this
.
socialCard
=
socialCard
==
null
?
null
:
socialCard
.
trim
();
}
public
String
getWorkUnit
()
{
return
workUnit
;
}
public
void
setWorkUnit
(
String
workUnit
)
{
this
.
workUnit
=
workUnit
==
null
?
null
:
workUnit
.
trim
();
}
public
String
getHealthFileNumber
()
{
return
healthFileNumber
;
}
public
void
setHealthFileNumber
(
String
healthFileNumber
)
{
this
.
healthFileNumber
=
healthFileNumber
==
null
?
null
:
healthFileNumber
.
trim
();
}
public
String
getPaymentType
()
{
return
paymentType
;
}
public
void
setPaymentType
(
String
paymentType
)
{
this
.
paymentType
=
paymentType
==
null
?
null
:
paymentType
.
trim
();
}
public
String
getRemarks
()
{
return
remarks
;
}
public
void
setRemarks
(
String
remarks
)
{
this
.
remarks
=
remarks
==
null
?
null
:
remarks
.
trim
();
}
public
String
getEmail
()
{
return
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
==
null
?
null
:
email
.
trim
();
}
public
String
getNation
()
{
return
nation
;
}
public
void
setNation
(
String
nation
)
{
this
.
nation
=
nation
==
null
?
null
:
nation
.
trim
();
}
public
Integer
getCreateId
()
{
return
createId
;
}
public
void
setCreateId
(
Integer
createId
)
{
this
.
createId
=
createId
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
public
Integer
getModifyId
()
{
return
modifyId
;
}
public
void
setModifyId
(
Integer
modifyId
)
{
this
.
modifyId
=
modifyId
;
}
public
Date
getModifyTime
()
{
return
modifyTime
;
}
public
void
setModifyTime
(
Date
modifyTime
)
{
this
.
modifyTime
=
modifyTime
;
}
public
int
getDeleteFlag
()
{
return
deleteFlag
;
}
public
void
setDeleteFlag
(
int
deleteFlag
)
{
this
.
deleteFlag
=
deleteFlag
;
}
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/enums/EnumsType.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
enums
;
public
enum
EnumsType
{
//登录类型枚举
LOGIN_CODE
(
1
,
"验证码登录"
),
LOGIN_PWD
(
2
,
"密码登录"
),
LOGIN_WE_CHAT
(
3
,
"微信登录"
),
LOGIN_OUT
(
4
,
"退出登录"
),
LOGIN_REGISTER
(
5
,
"注册登录"
),
//登录态相关枚举
LOGIN_STATUS_SUCCESS
(
1
,
"登录成功"
),
LOGIN_STATUS_FAILURE
(
2
,
"登录失败"
),
//产品来源相关枚举
PRODUCT_TYPE_DOCTOR
(
1
,
"云鹊医产品系"
),
PRODUCT_TYPE_HEALTH
(
2
,
"云鹊健康产品系"
),
//终端类型
DEVICE_TYPE_ANDROID
(
1
,
"安卓"
),
DEVICE_TYPE_IOS
(
2
,
"ios"
),
DEVICE_TYPE_WEB
(
3
,
"web"
),
DEVICE_TYPE_H5
(
4
,
"H5"
),
DEVICE_TYPE_ADMIN
(
5
,
"admin"
),
//验证码获取类型: flag:0登录(默认)1注册 2微信登录绑定手机 3修改手机 4重置密码
SYSCODE_TYPE_LOGIN
(
0
,
"登录"
),
SYSCODE_TYPE_REGISTER
(
1
,
"注册"
),
SYSCODE_TYPE_WE_CHAT
(
2
,
"微信登录绑定手机"
),
SYSCODE_TYPE_MODIFY_MOBILE
(
3
,
"修改手机号"
),
SYSCODE_TYPE_RESET_PASSWORD
(
4
,
"重置密码"
),
//联合登录类型
UNION_LOGIN_WE_CHAT
(
1
,
"微信"
),
UNION_LOGIN_QQ
(
2
,
"QQ"
),
union_login_blog
(
3
,
"微博"
),
//日志类型枚举
LOG_TYPE_LOGIN
(
1
,
"登录日志"
),
LOG_TYPE_PASSWORD
(
2
,
"密码更新日志"
),
LOG_TYPE_USER_INFO
(
3
,
"用户信息更新日志"
);
private
int
code
;
private
String
type
;
EnumsType
(
int
code
,
String
type
)
{
this
.
code
=
code
;
this
.
type
=
type
;
}
public
int
getCode
()
{
return
code
;
}
public
void
setCode
(
int
code
)
{
this
.
code
=
code
;
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
}
server/src/main/java/com/pica/cloud/account/account/server/enums/ExceptionType.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
enums
;
public
enum
ExceptionType
{
PICA_NOT_EMPTY
(
"216501"
,
"字段非空提示信息"
),
PICA_MOBILE_ERROR
(
"216502"
,
"请输入正确的手机号"
),
PICA_SYSCODE_ERROR
(
"216503"
,
"短信验证码错误"
),
PICA_SYSCODE_EXPIRE
(
"216504"
,
"短信验证码已过期,请重新获取"
),
PICA_SYSCODE_RESET
(
"216505"
,
"请X秒后重试(获取验证码),请重新获取"
),
PICA_SYSCODE_LATER
(
"216506"
,
"验证码获取过于频繁,请隔天后重试"
),
PICA_ALREADY_REGISTER
(
"216507"
,
"该手机号已注册,请直接登录"
),
PICA_NOT_REGISTER
(
"216508"
,
"未注册,请先注册"
),
PICA_PASSWORD_ERROR
(
"216509"
,
"请输入正确的密码"
),
PICA_IMAGE_PASSWORD_ERROR
(
"216511"
,
"图形验证码错误"
),
PICA_LOGIN_AGAIN
(
"216512"
,
"请重新登录"
);
private
String
code
;
private
String
message
;
ExceptionType
(
String
code
,
String
message
)
{
this
.
code
=
code
;
this
.
message
=
message
;
}
public
String
getCode
()
{
return
code
;
}
public
void
setCode
(
String
code
)
{
this
.
code
=
code
;
}
public
String
getMessage
()
{
return
message
;
}
public
void
setMessage
(
String
message
)
{
this
.
message
=
message
;
}
}
server/src/main/java/com/pica/cloud/account/account/server/log/PicaLogEntity.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
log
;
/**
* 日志记录
*/
public
class
PicaLogEntity
{
//标记当前记录的是哪种日志
private
int
logType
;
public
int
getLogType
()
{
return
logType
;
}
public
void
setLogType
(
int
logType
)
{
this
.
logType
=
logType
;
}
}
server/src/main/java/com/pica/cloud/account/account/server/log/PicaLogTask.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
log
;
import
com.pica.cloud.account.account.server.entity.LogLoginEntity
;
import
com.pica.cloud.account.account.server.entity.LogPWDModifyEntity
;
import
com.pica.cloud.account.account.server.entity.LogUserInfoEntity
;
import
com.pica.cloud.account.account.server.enums.EnumsType
;
import
com.pica.cloud.account.account.server.mapper.LogLoginMapper
;
import
com.pica.cloud.account.account.server.mapper.LogPWDModifyMapper
;
import
com.pica.cloud.account.account.server.mapper.LogUserInfoMapper
;
import
org.springframework.beans.factory.annotation.Autowired
;
public
class
PicaLogTask
implements
Runnable
{
@Autowired
private
LogLoginMapper
loginLogMapper
;
@Autowired
private
LogPWDModifyMapper
logPWDModifyMapper
;
@Autowired
private
LogUserInfoMapper
logUserInfoMapper
;
/**
* 日志类型
*/
private
int
type
;
/**
* 日志内容
*/
private
PicaLogEntity
picaLogEntity
;
PicaLogTask
(
PicaLogEntity
picaLogEntity
)
{
this
.
picaLogEntity
=
picaLogEntity
;
type
=
picaLogEntity
.
getLogType
();
}
@Override
public
void
run
()
{
if
(
type
==
EnumsType
.
LOG_TYPE_LOGIN
.
getCode
())
{
loginLogMapper
.
insertSelective
((
LogLoginEntity
)
picaLogEntity
);
}
else
if
(
type
==
EnumsType
.
LOG_TYPE_PASSWORD
.
getCode
())
{
logPWDModifyMapper
.
insertSelective
((
LogPWDModifyEntity
)
picaLogEntity
);
}
else
if
(
type
==
EnumsType
.
LOG_TYPE_USER_INFO
.
getCode
())
{
logUserInfoMapper
.
insertSelective
((
LogUserInfoEntity
)
picaLogEntity
);
}
}
}
server/src/main/java/com/pica/cloud/account/account/server/log/PicaLogUtils.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
log
;
import
org.springframework.stereotype.Component
;
import
java.util.concurrent.ExecutorService
;
import
java.util.concurrent.Executors
;
@Component
public
class
PicaLogUtils
{
/**
* 开启一个线程池
*/
ExecutorService
executor
=
Executors
.
newFixedThreadPool
(
30
);
/**
* 日志记录方法
*
* @param picaLogEntity
*/
public
void
info
(
PicaLogEntity
picaLogEntity
)
{
executor
.
submit
(
new
PicaLogTask
(
picaLogEntity
));
}
}
server/src/main/java/com/pica/cloud/account/account/server/mapper/AccountInfoDetailMapper.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
mapper
;
import
com.pica.cloud.account.account.server.entity.AccountInfoEntity
;
public
interface
AccountInfoDetailMapper
{
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
AccountInfoEntity
record
);
int
insertSelective
(
AccountInfoEntity
record
);
AccountInfoEntity
selectByPrimaryKey
(
Integer
id
);
int
updateByPrimaryKeySelective
(
AccountInfoEntity
record
);
int
updateByPrimaryKey
(
AccountInfoEntity
record
);
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/mapper/AccountUnionMapper.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
mapper
;
import
com.pica.cloud.account.account.server.entity.AccountUnionEntity
;
public
interface
AccountUnionMapper
{
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
AccountUnionEntity
record
);
int
insertSelective
(
AccountUnionEntity
record
);
AccountUnionEntity
selectByPrimaryKey
(
Integer
id
);
int
updateByPrimaryKeySelective
(
AccountUnionEntity
record
);
int
updateByPrimaryKey
(
AccountUnionEntity
record
);
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/mapper/AccountUserInfoMapper.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
mapper
;
import
com.pica.cloud.account.account.server.entity.AccountUserInfoEntity
;
public
interface
AccountUserInfoMapper
{
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
AccountUserInfoEntity
record
);
int
insertSelective
(
AccountUserInfoEntity
record
);
AccountUserInfoEntity
selectByPrimaryKey
(
Integer
id
);
int
updateByPrimaryKeySelective
(
AccountUserInfoEntity
record
);
int
updateByPrimaryKey
(
AccountUserInfoEntity
record
);
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/mapper/AccountWeChatInfoMapper.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
mapper
;
import
com.pica.cloud.account.account.server.entity.AccountWeChatInfoEntity
;
public
interface
AccountWeChatInfoMapper
{
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
AccountWeChatInfoEntity
record
);
int
insertSelective
(
AccountWeChatInfoEntity
record
);
AccountWeChatInfoEntity
selectByPrimaryKey
(
Integer
id
);
int
updateByPrimaryKeySelective
(
AccountWeChatInfoEntity
record
);
int
updateByPrimaryKey
(
AccountWeChatInfoEntity
record
);
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/mapper/LogLoginMapper.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
mapper
;
import
com.pica.cloud.account.account.server.entity.LogLoginEntity
;
public
interface
LogLoginMapper
{
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
LogLoginEntity
record
);
int
insertSelective
(
LogLoginEntity
record
);
LogLoginEntity
selectByPrimaryKey
(
Integer
id
);
int
updateByPrimaryKeySelective
(
LogLoginEntity
record
);
int
updateByPrimaryKey
(
LogLoginEntity
record
);
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/mapper/LogPWDModifyMapper.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
mapper
;
import
com.pica.cloud.account.account.server.entity.LogPWDModifyEntity
;
public
interface
LogPWDModifyMapper
{
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
LogPWDModifyEntity
record
);
int
insertSelective
(
LogPWDModifyEntity
record
);
LogPWDModifyEntity
selectByPrimaryKey
(
Integer
id
);
int
updateByPrimaryKeySelective
(
LogPWDModifyEntity
record
);
int
updateByPrimaryKey
(
LogPWDModifyEntity
record
);
}
\ No newline at end of file
server/src/main/java/com/pica/cloud/account/account/server/mapper/LogUserInfoMapper.java
0 → 100644
浏览文件 @
350459e9
package
com
.
pica
.
cloud
.
account
.
account
.
server
.
mapper
;
import
com.pica.cloud.account.account.server.entity.LogUserInfoEntity
;
public
interface
LogUserInfoMapper
{
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
LogUserInfoEntity
record
);
int
insertSelective
(
LogUserInfoEntity
record
);
LogUserInfoEntity
selectByPrimaryKey
(
Integer
id
);
int
updateByPrimaryKeySelective
(
LogUserInfoEntity
record
);
int
updateByPrimaryKey
(
LogUserInfoEntity
record
);
}
\ No newline at end of file
server/src/main/resources/mybatis/AccountInfoEntityMapper.xml
0 → 100644
浏览文件 @
350459e9
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.pica.cloud.account.account.server.mapper.AccountInfoDetailMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.pica.cloud.account.account.server.entity.AccountInfoEntity"
>
<id
column=
"id"
property=
"id"
jdbcType=
"INTEGER"
/>
<result
column=
"mobile_phone"
property=
"mobilePhone"
jdbcType=
"VARCHAR"
/>
<result
column=
"password"
property=
"password"
jdbcType=
"VARCHAR"
/>
<result
column=
"register_product"
property=
"registerProduct"
jdbcType=
"INTEGER"
/>
<result
column=
"register_source"
property=
"registerSource"
jdbcType=
"INTEGER"
/>
<result
column=
"name"
property=
"name"
jdbcType=
"VARCHAR"
/>
<result
column=
"age"
property=
"age"
jdbcType=
"TINYINT"
/>
<result
column=
"birthday"
property=
"birthday"
jdbcType=
"DATE"
/>
<result
column=
"sex"
property=
"sex"
jdbcType=
"TINYINT"
/>
<result
column=
"id_card"
property=
"idCard"
jdbcType=
"VARCHAR"
/>
<result
column=
"reg_time"
property=
"regTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"delete_flag"
property=
"deleteFlag"
jdbcType=
"INTEGER"
/>
<result
column=
"created_id"
property=
"createdId"
jdbcType=
"INTEGER"
/>
<result
column=
"created_time"
property=
"createdTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"modified_id"
property=
"modifiedId"
jdbcType=
"INTEGER"
/>
<result
column=
"modified_time"
property=
"modifiedTime"
jdbcType=
"TIMESTAMP"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
id, mobile_phone, password, register_product, register_source, name, age, birthday,
sex, id_card, reg_time, delete_flag, created_id, created_time, modified_id, modified_time
</sql>
<select
id=
"selectByPrimaryKey"
resultMap=
"BaseResultMap"
parameterType=
"java.lang.Integer"
>
select
<include
refid=
"Base_Column_List"
/>
from account_info
where id = #{id,jdbcType=INTEGER}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Integer"
>
delete from account_info
where id = #{id,jdbcType=INTEGER}
</delete>
<insert
id=
"insert"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountInfoEntity"
>
insert into account_info (id, mobile_phone, password,
register_product, register_source, name,
age, birthday, sex, id_card,
reg_time, delete_flag, created_id,
created_time, modified_id, modified_time
)
values (#{id,jdbcType=INTEGER}, #{mobilePhone,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},
#{registerProduct,jdbcType=INTEGER}, #{registerSource,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR},
#{age,jdbcType=TINYINT}, #{birthday,jdbcType=DATE}, #{sex,jdbcType=TINYINT}, #{idCard,jdbcType=VARCHAR},
#{regTime,jdbcType=TIMESTAMP}, #{deleteFlag,jdbcType=INTEGER}, #{createdId,jdbcType=INTEGER},
#{createdTime,jdbcType=TIMESTAMP}, #{modifiedId,jdbcType=INTEGER}, #{modifiedTime,jdbcType=TIMESTAMP}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountInfoEntity"
>
insert into account_info
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"mobilePhone != null"
>
mobile_phone,
</if>
<if
test=
"password != null"
>
password,
</if>
<if
test=
"registerProduct != null"
>
register_product,
</if>
<if
test=
"registerSource != null"
>
register_source,
</if>
<if
test=
"name != null"
>
name,
</if>
<if
test=
"age != null"
>
age,
</if>
<if
test=
"birthday != null"
>
birthday,
</if>
<if
test=
"sex != null"
>
sex,
</if>
<if
test=
"idCard != null"
>
id_card,
</if>
<if
test=
"regTime != null"
>
reg_time,
</if>
<if
test=
"deleteFlag != null"
>
delete_flag,
</if>
<if
test=
"createdId != null"
>
created_id,
</if>
<if
test=
"createdTime != null"
>
created_time,
</if>
<if
test=
"modifiedId != null"
>
modified_id,
</if>
<if
test=
"modifiedTime != null"
>
modified_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"mobilePhone != null"
>
#{mobilePhone,jdbcType=VARCHAR},
</if>
<if
test=
"password != null"
>
#{password,jdbcType=VARCHAR},
</if>
<if
test=
"registerProduct != null"
>
#{registerProduct,jdbcType=INTEGER},
</if>
<if
test=
"registerSource != null"
>
#{registerSource,jdbcType=INTEGER},
</if>
<if
test=
"name != null"
>
#{name,jdbcType=VARCHAR},
</if>
<if
test=
"age != null"
>
#{age,jdbcType=TINYINT},
</if>
<if
test=
"birthday != null"
>
#{birthday,jdbcType=DATE},
</if>
<if
test=
"sex != null"
>
#{sex,jdbcType=TINYINT},
</if>
<if
test=
"idCard != null"
>
#{idCard,jdbcType=VARCHAR},
</if>
<if
test=
"regTime != null"
>
#{regTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"deleteFlag != null"
>
#{deleteFlag,jdbcType=INTEGER},
</if>
<if
test=
"createdId != null"
>
#{createdId,jdbcType=INTEGER},
</if>
<if
test=
"createdTime != null"
>
#{createdTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifiedId != null"
>
#{modifiedId,jdbcType=INTEGER},
</if>
<if
test=
"modifiedTime != null"
>
#{modifiedTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountInfoEntity"
>
update account_info
<set
>
<if
test=
"mobilePhone != null"
>
mobile_phone = #{mobilePhone,jdbcType=VARCHAR},
</if>
<if
test=
"password != null"
>
password = #{password,jdbcType=VARCHAR},
</if>
<if
test=
"registerProduct != null"
>
register_product = #{registerProduct,jdbcType=INTEGER},
</if>
<if
test=
"registerSource != null"
>
register_source = #{registerSource,jdbcType=INTEGER},
</if>
<if
test=
"name != null"
>
name = #{name,jdbcType=VARCHAR},
</if>
<if
test=
"age != null"
>
age = #{age,jdbcType=TINYINT},
</if>
<if
test=
"birthday != null"
>
birthday = #{birthday,jdbcType=DATE},
</if>
<if
test=
"sex != null"
>
sex = #{sex,jdbcType=TINYINT},
</if>
<if
test=
"idCard != null"
>
id_card = #{idCard,jdbcType=VARCHAR},
</if>
<if
test=
"regTime != null"
>
reg_time = #{regTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"deleteFlag != null"
>
delete_flag = #{deleteFlag,jdbcType=INTEGER},
</if>
<if
test=
"createdId != null"
>
created_id = #{createdId,jdbcType=INTEGER},
</if>
<if
test=
"createdTime != null"
>
created_time = #{createdTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifiedId != null"
>
modified_id = #{modifiedId,jdbcType=INTEGER},
</if>
<if
test=
"modifiedTime != null"
>
modified_time = #{modifiedTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountInfoEntity"
>
update account_info
set mobile_phone = #{mobilePhone,jdbcType=VARCHAR},
password = #{password,jdbcType=VARCHAR},
register_product = #{registerProduct,jdbcType=INTEGER},
register_source = #{registerSource,jdbcType=INTEGER},
name = #{name,jdbcType=VARCHAR},
age = #{age,jdbcType=TINYINT},
birthday = #{birthday,jdbcType=DATE},
sex = #{sex,jdbcType=TINYINT},
id_card = #{idCard,jdbcType=VARCHAR},
reg_time = #{regTime,jdbcType=TIMESTAMP},
delete_flag = #{deleteFlag,jdbcType=INTEGER},
created_id = #{createdId,jdbcType=INTEGER},
created_time = #{createdTime,jdbcType=TIMESTAMP},
modified_id = #{modifiedId,jdbcType=INTEGER},
modified_time = #{modifiedTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
server/src/main/resources/mybatis/AccountUnionEntityMapper.xml
0 → 100644
浏览文件 @
350459e9
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.pica.cloud.account.account.server.mapper.AccountUnionMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.pica.cloud.account.account.server.entity.AccountUnionEntity"
>
<id
column=
"id"
property=
"id"
jdbcType=
"INTEGER"
/>
<result
column=
"acct_id"
property=
"acctId"
jdbcType=
"BIGINT"
/>
<result
column=
"union_type"
property=
"unionType"
jdbcType=
"INTEGER"
/>
<result
column=
"union_id"
property=
"unionId"
jdbcType=
"VARCHAR"
/>
<result
column=
"nickname"
property=
"nickname"
jdbcType=
"VARCHAR"
/>
<result
column=
"head_img_url"
property=
"headImgUrl"
jdbcType=
"VARCHAR"
/>
<result
column=
"sex"
property=
"sex"
jdbcType=
"TINYINT"
/>
<result
column=
"country"
property=
"country"
jdbcType=
"VARCHAR"
/>
<result
column=
"province"
property=
"province"
jdbcType=
"VARCHAR"
/>
<result
column=
"city"
property=
"city"
jdbcType=
"VARCHAR"
/>
<result
column=
"language"
property=
"language"
jdbcType=
"VARCHAR"
/>
<result
column=
"delete_flag"
property=
"deleteFlag"
jdbcType=
"INTEGER"
/>
<result
column=
"created_id"
property=
"createdId"
jdbcType=
"INTEGER"
/>
<result
column=
"created_time"
property=
"createdTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"modified_id"
property=
"modifiedId"
jdbcType=
"INTEGER"
/>
<result
column=
"modified_time"
property=
"modifiedTime"
jdbcType=
"TIMESTAMP"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
id, acct_id, union_type, union_id, nickname, head_img_url, sex, country, province,
city, language, delete_flag, created_id, created_time, modified_id, modified_time
</sql>
<select
id=
"selectByPrimaryKey"
resultMap=
"BaseResultMap"
parameterType=
"java.lang.Integer"
>
select
<include
refid=
"Base_Column_List"
/>
from account_union
where id = #{id,jdbcType=INTEGER}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Integer"
>
delete from account_union
where id = #{id,jdbcType=INTEGER}
</delete>
<insert
id=
"insert"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountUnionEntity"
>
insert into account_union (id, acct_id, union_type,
union_id, nickname, head_img_url,
sex, country, province,
city, language, delete_flag,
created_id, created_time, modified_id,
modified_time)
values (#{id,jdbcType=INTEGER}, #{acctId,jdbcType=BIGINT}, #{unionType,jdbcType=INTEGER},
#{unionId,jdbcType=VARCHAR}, #{nickname,jdbcType=VARCHAR}, #{headImgUrl,jdbcType=VARCHAR},
#{sex,jdbcType=TINYINT}, #{country,jdbcType=VARCHAR}, #{province,jdbcType=VARCHAR},
#{city,jdbcType=VARCHAR}, #{language,jdbcType=VARCHAR}, #{deleteFlag,jdbcType=INTEGER},
#{createdId,jdbcType=INTEGER}, #{createdTime,jdbcType=TIMESTAMP}, #{modifiedId,jdbcType=INTEGER},
#{modifiedTime,jdbcType=TIMESTAMP})
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountUnionEntity"
>
insert into account_union
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"acctId != null"
>
acct_id,
</if>
<if
test=
"unionType != null"
>
union_type,
</if>
<if
test=
"unionId != null"
>
union_id,
</if>
<if
test=
"nickname != null"
>
nickname,
</if>
<if
test=
"headImgUrl != null"
>
head_img_url,
</if>
<if
test=
"sex != null"
>
sex,
</if>
<if
test=
"country != null"
>
country,
</if>
<if
test=
"province != null"
>
province,
</if>
<if
test=
"city != null"
>
city,
</if>
<if
test=
"language != null"
>
language,
</if>
<if
test=
"deleteFlag != null"
>
delete_flag,
</if>
<if
test=
"createdId != null"
>
created_id,
</if>
<if
test=
"createdTime != null"
>
created_time,
</if>
<if
test=
"modifiedId != null"
>
modified_id,
</if>
<if
test=
"modifiedTime != null"
>
modified_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"acctId != null"
>
#{acctId,jdbcType=BIGINT},
</if>
<if
test=
"unionType != null"
>
#{unionType,jdbcType=INTEGER},
</if>
<if
test=
"unionId != null"
>
#{unionId,jdbcType=VARCHAR},
</if>
<if
test=
"nickname != null"
>
#{nickname,jdbcType=VARCHAR},
</if>
<if
test=
"headImgUrl != null"
>
#{headImgUrl,jdbcType=VARCHAR},
</if>
<if
test=
"sex != null"
>
#{sex,jdbcType=TINYINT},
</if>
<if
test=
"country != null"
>
#{country,jdbcType=VARCHAR},
</if>
<if
test=
"province != null"
>
#{province,jdbcType=VARCHAR},
</if>
<if
test=
"city != null"
>
#{city,jdbcType=VARCHAR},
</if>
<if
test=
"language != null"
>
#{language,jdbcType=VARCHAR},
</if>
<if
test=
"deleteFlag != null"
>
#{deleteFlag,jdbcType=INTEGER},
</if>
<if
test=
"createdId != null"
>
#{createdId,jdbcType=INTEGER},
</if>
<if
test=
"createdTime != null"
>
#{createdTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifiedId != null"
>
#{modifiedId,jdbcType=INTEGER},
</if>
<if
test=
"modifiedTime != null"
>
#{modifiedTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountUnionEntity"
>
update account_union
<set
>
<if
test=
"acctId != null"
>
acct_id = #{acctId,jdbcType=BIGINT},
</if>
<if
test=
"unionType != null"
>
union_type = #{unionType,jdbcType=INTEGER},
</if>
<if
test=
"unionId != null"
>
union_id = #{unionId,jdbcType=VARCHAR},
</if>
<if
test=
"nickname != null"
>
nickname = #{nickname,jdbcType=VARCHAR},
</if>
<if
test=
"headImgUrl != null"
>
head_img_url = #{headImgUrl,jdbcType=VARCHAR},
</if>
<if
test=
"sex != null"
>
sex = #{sex,jdbcType=TINYINT},
</if>
<if
test=
"country != null"
>
country = #{country,jdbcType=VARCHAR},
</if>
<if
test=
"province != null"
>
province = #{province,jdbcType=VARCHAR},
</if>
<if
test=
"city != null"
>
city = #{city,jdbcType=VARCHAR},
</if>
<if
test=
"language != null"
>
language = #{language,jdbcType=VARCHAR},
</if>
<if
test=
"deleteFlag != null"
>
delete_flag = #{deleteFlag,jdbcType=INTEGER},
</if>
<if
test=
"createdId != null"
>
created_id = #{createdId,jdbcType=INTEGER},
</if>
<if
test=
"createdTime != null"
>
created_time = #{createdTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifiedId != null"
>
modified_id = #{modifiedId,jdbcType=INTEGER},
</if>
<if
test=
"modifiedTime != null"
>
modified_time = #{modifiedTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountUnionEntity"
>
update account_union
set acct_id = #{acctId,jdbcType=BIGINT},
union_type = #{unionType,jdbcType=INTEGER},
union_id = #{unionId,jdbcType=VARCHAR},
nickname = #{nickname,jdbcType=VARCHAR},
head_img_url = #{headImgUrl,jdbcType=VARCHAR},
sex = #{sex,jdbcType=TINYINT},
country = #{country,jdbcType=VARCHAR},
province = #{province,jdbcType=VARCHAR},
city = #{city,jdbcType=VARCHAR},
language = #{language,jdbcType=VARCHAR},
delete_flag = #{deleteFlag,jdbcType=INTEGER},
created_id = #{createdId,jdbcType=INTEGER},
created_time = #{createdTime,jdbcType=TIMESTAMP},
modified_id = #{modifiedId,jdbcType=INTEGER},
modified_time = #{modifiedTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
server/src/main/resources/mybatis/AccountUserInfoEntityMapper.xml
0 → 100644
浏览文件 @
350459e9
此差异已折叠。
点击以展开。
server/src/main/resources/mybatis/AccountWeChatInfoEntityMapper.xml
0 → 100644
浏览文件 @
350459e9
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.pica.cloud.account.account.server.mapper.AccountWeChatInfoMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.pica.cloud.account.account.server.entity.AccountWeChatInfoEntity"
>
<id
column=
"id"
property=
"id"
jdbcType=
"INTEGER"
/>
<result
column=
"unionid"
property=
"unionid"
jdbcType=
"VARCHAR"
/>
<result
column=
"openid"
property=
"openid"
jdbcType=
"VARCHAR"
/>
<result
column=
"type"
property=
"type"
jdbcType=
"INTEGER"
/>
<result
column=
"privilege"
property=
"privilege"
jdbcType=
"VARCHAR"
/>
<result
column=
"subscribe"
property=
"subscribe"
jdbcType=
"INTEGER"
/>
<result
column=
"subscribe_time"
property=
"subscribeTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"remark"
property=
"remark"
jdbcType=
"VARCHAR"
/>
<result
column=
"groupid"
property=
"groupid"
jdbcType=
"VARCHAR"
/>
<result
column=
"tagid_list"
property=
"tagidList"
jdbcType=
"VARCHAR"
/>
<result
column=
"delete_flag"
property=
"deleteFlag"
jdbcType=
"INTEGER"
/>
<result
column=
"created_id"
property=
"createdId"
jdbcType=
"INTEGER"
/>
<result
column=
"created_time"
property=
"createdTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"modified_id"
property=
"modifiedId"
jdbcType=
"INTEGER"
/>
<result
column=
"modified_time"
property=
"modifiedTime"
jdbcType=
"TIMESTAMP"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
id, unionid, openid, type, privilege, subscribe, subscribe_time, remark, groupid,
tagid_list, delete_flag, created_id, created_time, modified_id, modified_time
</sql>
<select
id=
"selectByPrimaryKey"
resultMap=
"BaseResultMap"
parameterType=
"java.lang.Integer"
>
select
<include
refid=
"Base_Column_List"
/>
from account_wechat_info
where id = #{id,jdbcType=INTEGER}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Integer"
>
delete from account_wechat_info
where id = #{id,jdbcType=INTEGER}
</delete>
<insert
id=
"insert"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountWeChatInfoEntity"
>
insert into account_wechat_info (id, unionid, openid,
type, privilege, subscribe,
subscribe_time, remark, groupid,
tagid_list, delete_flag, created_id,
created_time, modified_id, modified_time
)
values (#{id,jdbcType=INTEGER}, #{unionid,jdbcType=VARCHAR}, #{openid,jdbcType=VARCHAR},
#{type,jdbcType=INTEGER}, #{privilege,jdbcType=VARCHAR}, #{subscribe,jdbcType=INTEGER},
#{subscribeTime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR}, #{groupid,jdbcType=VARCHAR},
#{tagidList,jdbcType=VARCHAR}, #{deleteFlag,jdbcType=INTEGER}, #{createdId,jdbcType=INTEGER},
#{createdTime,jdbcType=TIMESTAMP}, #{modifiedId,jdbcType=INTEGER}, #{modifiedTime,jdbcType=TIMESTAMP}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountWeChatInfoEntity"
>
insert into account_wechat_info
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"unionid != null"
>
unionid,
</if>
<if
test=
"openid != null"
>
openid,
</if>
<if
test=
"type != null"
>
type,
</if>
<if
test=
"privilege != null"
>
privilege,
</if>
<if
test=
"subscribe != null"
>
subscribe,
</if>
<if
test=
"subscribeTime != null"
>
subscribe_time,
</if>
<if
test=
"remark != null"
>
remark,
</if>
<if
test=
"groupid != null"
>
groupid,
</if>
<if
test=
"tagidList != null"
>
tagid_list,
</if>
<if
test=
"deleteFlag != null"
>
delete_flag,
</if>
<if
test=
"createdId != null"
>
created_id,
</if>
<if
test=
"createdTime != null"
>
created_time,
</if>
<if
test=
"modifiedId != null"
>
modified_id,
</if>
<if
test=
"modifiedTime != null"
>
modified_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"unionid != null"
>
#{unionid,jdbcType=VARCHAR},
</if>
<if
test=
"openid != null"
>
#{openid,jdbcType=VARCHAR},
</if>
<if
test=
"type != null"
>
#{type,jdbcType=INTEGER},
</if>
<if
test=
"privilege != null"
>
#{privilege,jdbcType=VARCHAR},
</if>
<if
test=
"subscribe != null"
>
#{subscribe,jdbcType=INTEGER},
</if>
<if
test=
"subscribeTime != null"
>
#{subscribeTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"remark != null"
>
#{remark,jdbcType=VARCHAR},
</if>
<if
test=
"groupid != null"
>
#{groupid,jdbcType=VARCHAR},
</if>
<if
test=
"tagidList != null"
>
#{tagidList,jdbcType=VARCHAR},
</if>
<if
test=
"deleteFlag != null"
>
#{deleteFlag,jdbcType=INTEGER},
</if>
<if
test=
"createdId != null"
>
#{createdId,jdbcType=INTEGER},
</if>
<if
test=
"createdTime != null"
>
#{createdTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifiedId != null"
>
#{modifiedId,jdbcType=INTEGER},
</if>
<if
test=
"modifiedTime != null"
>
#{modifiedTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountWeChatInfoEntity"
>
update account_wechat_info
<set
>
<if
test=
"unionid != null"
>
unionid = #{unionid,jdbcType=VARCHAR},
</if>
<if
test=
"openid != null"
>
openid = #{openid,jdbcType=VARCHAR},
</if>
<if
test=
"type != null"
>
type = #{type,jdbcType=INTEGER},
</if>
<if
test=
"privilege != null"
>
privilege = #{privilege,jdbcType=VARCHAR},
</if>
<if
test=
"subscribe != null"
>
subscribe = #{subscribe,jdbcType=INTEGER},
</if>
<if
test=
"subscribeTime != null"
>
subscribe_time = #{subscribeTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"remark != null"
>
remark = #{remark,jdbcType=VARCHAR},
</if>
<if
test=
"groupid != null"
>
groupid = #{groupid,jdbcType=VARCHAR},
</if>
<if
test=
"tagidList != null"
>
tagid_list = #{tagidList,jdbcType=VARCHAR},
</if>
<if
test=
"deleteFlag != null"
>
delete_flag = #{deleteFlag,jdbcType=INTEGER},
</if>
<if
test=
"createdId != null"
>
created_id = #{createdId,jdbcType=INTEGER},
</if>
<if
test=
"createdTime != null"
>
created_time = #{createdTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifiedId != null"
>
modified_id = #{modifiedId,jdbcType=INTEGER},
</if>
<if
test=
"modifiedTime != null"
>
modified_time = #{modifiedTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.pica.cloud.account.account.server.entity.AccountWeChatInfoEntity"
>
update account_wechat_info
set unionid = #{unionid,jdbcType=VARCHAR},
openid = #{openid,jdbcType=VARCHAR},
type = #{type,jdbcType=INTEGER},
privilege = #{privilege,jdbcType=VARCHAR},
subscribe = #{subscribe,jdbcType=INTEGER},
subscribe_time = #{subscribeTime,jdbcType=TIMESTAMP},
remark = #{remark,jdbcType=VARCHAR},
groupid = #{groupid,jdbcType=VARCHAR},
tagid_list = #{tagidList,jdbcType=VARCHAR},
delete_flag = #{deleteFlag,jdbcType=INTEGER},
created_id = #{createdId,jdbcType=INTEGER},
created_time = #{createdTime,jdbcType=TIMESTAMP},
modified_id = #{modifiedId,jdbcType=INTEGER},
modified_time = #{modifiedTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
server/src/main/resources/mybatis/LogLoginEntityMapper.xml
0 → 100644
浏览文件 @
350459e9
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.pica.cloud.account.account.server.mapper.LogLoginMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.pica.cloud.account.account.server.entity.LogLoginEntity"
>
<id
column=
"id"
property=
"id"
jdbcType=
"INTEGER"
/>
<result
column=
"acct_id"
property=
"acctId"
jdbcType=
"INTEGER"
/>
<result
column=
"acct_name"
property=
"acctName"
jdbcType=
"VARCHAR"
/>
<result
column=
"product_type"
property=
"productType"
jdbcType=
"TINYINT"
/>
<result
column=
"source_type"
property=
"sourceType"
jdbcType=
"TINYINT"
/>
<result
column=
"login_type"
property=
"loginType"
jdbcType=
"TINYINT"
/>
<result
column=
"login_ip"
property=
"loginIp"
jdbcType=
"VARCHAR"
/>
<result
column=
"login_time"
property=
"loginTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"login_status"
property=
"loginStatus"
jdbcType=
"TINYINT"
/>
<result
column=
"create_id"
property=
"createId"
jdbcType=
"INTEGER"
/>
<result
column=
"create_time"
property=
"createTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"modify_id"
property=
"modifyId"
jdbcType=
"INTEGER"
/>
<result
column=
"modify_time"
property=
"modifyTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"delete_flag"
property=
"deleteFlag"
jdbcType=
"TINYINT"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
id, acct_id, acct_name, product_type, source_type, login_type, login_ip, login_time,
login_status, create_id, create_time, modify_id, modify_time, delete_flag
</sql>
<select
id=
"selectByPrimaryKey"
resultMap=
"BaseResultMap"
parameterType=
"java.lang.Integer"
>
select
<include
refid=
"Base_Column_List"
/>
from log_login
where id = #{id,jdbcType=INTEGER}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Integer"
>
delete from log_login
where id = #{id,jdbcType=INTEGER}
</delete>
<insert
id=
"insert"
parameterType=
"com.pica.cloud.account.account.server.entity.LogLoginEntity"
>
insert into log_login (id, acct_id, acct_name,
product_type, source_type, login_type,
login_ip, login_time, login_status,
create_id, create_time, modify_id,
modify_time, delete_flag)
values (#{id,jdbcType=INTEGER}, #{acctId,jdbcType=INTEGER}, #{acctName,jdbcType=VARCHAR},
#{productType,jdbcType=TINYINT}, #{sourceType,jdbcType=TINYINT}, #{loginType,jdbcType=TINYINT},
#{loginIp,jdbcType=VARCHAR}, #{loginTime,jdbcType=TIMESTAMP}, #{loginStatus,jdbcType=TINYINT},
#{createId,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, #{modifyId,jdbcType=INTEGER},
#{modifyTime,jdbcType=TIMESTAMP}, #{deleteFlag,jdbcType=TINYINT})
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.pica.cloud.account.account.server.entity.LogLoginEntity"
>
insert into log_login
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"acctId != null"
>
acct_id,
</if>
<if
test=
"acctName != null"
>
acct_name,
</if>
<if
test=
"productType != null"
>
product_type,
</if>
<if
test=
"sourceType != null"
>
source_type,
</if>
<if
test=
"loginType != null"
>
login_type,
</if>
<if
test=
"loginIp != null"
>
login_ip,
</if>
<if
test=
"loginTime != null"
>
login_time,
</if>
<if
test=
"loginStatus != null"
>
login_status,
</if>
<if
test=
"createId != null"
>
create_id,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"modifyId != null"
>
modify_id,
</if>
<if
test=
"modifyTime != null"
>
modify_time,
</if>
<if
test=
"deleteFlag != null"
>
delete_flag,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"acctId != null"
>
#{acctId,jdbcType=INTEGER},
</if>
<if
test=
"acctName != null"
>
#{acctName,jdbcType=VARCHAR},
</if>
<if
test=
"productType != null"
>
#{productType,jdbcType=TINYINT},
</if>
<if
test=
"sourceType != null"
>
#{sourceType,jdbcType=TINYINT},
</if>
<if
test=
"loginType != null"
>
#{loginType,jdbcType=TINYINT},
</if>
<if
test=
"loginIp != null"
>
#{loginIp,jdbcType=VARCHAR},
</if>
<if
test=
"loginTime != null"
>
#{loginTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"loginStatus != null"
>
#{loginStatus,jdbcType=TINYINT},
</if>
<if
test=
"createId != null"
>
#{createId,jdbcType=INTEGER},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifyId != null"
>
#{modifyId,jdbcType=INTEGER},
</if>
<if
test=
"modifyTime != null"
>
#{modifyTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"deleteFlag != null"
>
#{deleteFlag,jdbcType=TINYINT},
</if>
</trim>
</insert>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.pica.cloud.account.account.server.entity.LogLoginEntity"
>
update log_login
<set
>
<if
test=
"acctId != null"
>
acct_id = #{acctId,jdbcType=INTEGER},
</if>
<if
test=
"acctName != null"
>
acct_name = #{acctName,jdbcType=VARCHAR},
</if>
<if
test=
"productType != null"
>
product_type = #{productType,jdbcType=TINYINT},
</if>
<if
test=
"sourceType != null"
>
source_type = #{sourceType,jdbcType=TINYINT},
</if>
<if
test=
"loginType != null"
>
login_type = #{loginType,jdbcType=TINYINT},
</if>
<if
test=
"loginIp != null"
>
login_ip = #{loginIp,jdbcType=VARCHAR},
</if>
<if
test=
"loginTime != null"
>
login_time = #{loginTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"loginStatus != null"
>
login_status = #{loginStatus,jdbcType=TINYINT},
</if>
<if
test=
"createId != null"
>
create_id = #{createId,jdbcType=INTEGER},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifyId != null"
>
modify_id = #{modifyId,jdbcType=INTEGER},
</if>
<if
test=
"modifyTime != null"
>
modify_time = #{modifyTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"deleteFlag != null"
>
delete_flag = #{deleteFlag,jdbcType=TINYINT},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.pica.cloud.account.account.server.entity.LogLoginEntity"
>
update log_login
set acct_id = #{acctId,jdbcType=INTEGER},
acct_name = #{acctName,jdbcType=VARCHAR},
product_type = #{productType,jdbcType=TINYINT},
source_type = #{sourceType,jdbcType=TINYINT},
login_type = #{loginType,jdbcType=TINYINT},
login_ip = #{loginIp,jdbcType=VARCHAR},
login_time = #{loginTime,jdbcType=TIMESTAMP},
login_status = #{loginStatus,jdbcType=TINYINT},
create_id = #{createId,jdbcType=INTEGER},
create_time = #{createTime,jdbcType=TIMESTAMP},
modify_id = #{modifyId,jdbcType=INTEGER},
modify_time = #{modifyTime,jdbcType=TIMESTAMP},
delete_flag = #{deleteFlag,jdbcType=TINYINT}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
server/src/main/resources/mybatis/LogPWDModifyEntityMapper.xml
0 → 100644
浏览文件 @
350459e9
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.pica.cloud.account.account.server.mapper.LogPWDModifyMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.pica.cloud.account.account.server.entity.LogPWDModifyEntity"
>
<id
column=
"id"
property=
"id"
jdbcType=
"INTEGER"
/>
<result
column=
"mobile_phone"
property=
"mobilePhone"
jdbcType=
"VARCHAR"
/>
<result
column=
"modified_time"
property=
"modifiedTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"modified_id"
property=
"modifiedId"
jdbcType=
"INTEGER"
/>
<result
column=
"old_pwd"
property=
"oldPwd"
jdbcType=
"VARCHAR"
/>
<result
column=
"new_pwd"
property=
"newPwd"
jdbcType=
"VARCHAR"
/>
<result
column=
"delete_flag"
property=
"deleteFlag"
jdbcType=
"INTEGER"
/>
<result
column=
"created_id"
property=
"createdId"
jdbcType=
"INTEGER"
/>
<result
column=
"created_time"
property=
"createdTime"
jdbcType=
"TIMESTAMP"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
id, mobile_phone, modified_time, modified_id, old_pwd, new_pwd, delete_flag, created_id,
created_time
</sql>
<select
id=
"selectByPrimaryKey"
resultMap=
"BaseResultMap"
parameterType=
"java.lang.Integer"
>
select
<include
refid=
"Base_Column_List"
/>
from log_pwd_modify
where id = #{id,jdbcType=INTEGER}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Integer"
>
delete from log_pwd_modify
where id = #{id,jdbcType=INTEGER}
</delete>
<insert
id=
"insert"
parameterType=
"com.pica.cloud.account.account.server.entity.LogPWDModifyEntity"
>
insert into log_pwd_modify (id, mobile_phone, modified_time,
modified_id, old_pwd, new_pwd,
delete_flag, created_id, created_time
)
values (#{id,jdbcType=INTEGER}, #{mobilePhone,jdbcType=VARCHAR}, #{modifiedTime,jdbcType=TIMESTAMP},
#{modifiedId,jdbcType=INTEGER}, #{oldPwd,jdbcType=VARCHAR}, #{newPwd,jdbcType=VARCHAR},
#{deleteFlag,jdbcType=INTEGER}, #{createdId,jdbcType=INTEGER}, #{createdTime,jdbcType=TIMESTAMP}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.pica.cloud.account.account.server.entity.LogPWDModifyEntity"
>
insert into log_pwd_modify
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"mobilePhone != null"
>
mobile_phone,
</if>
<if
test=
"modifiedTime != null"
>
modified_time,
</if>
<if
test=
"modifiedId != null"
>
modified_id,
</if>
<if
test=
"oldPwd != null"
>
old_pwd,
</if>
<if
test=
"newPwd != null"
>
new_pwd,
</if>
<if
test=
"deleteFlag != null"
>
delete_flag,
</if>
<if
test=
"createdId != null"
>
created_id,
</if>
<if
test=
"createdTime != null"
>
created_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"mobilePhone != null"
>
#{mobilePhone,jdbcType=VARCHAR},
</if>
<if
test=
"modifiedTime != null"
>
#{modifiedTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifiedId != null"
>
#{modifiedId,jdbcType=INTEGER},
</if>
<if
test=
"oldPwd != null"
>
#{oldPwd,jdbcType=VARCHAR},
</if>
<if
test=
"newPwd != null"
>
#{newPwd,jdbcType=VARCHAR},
</if>
<if
test=
"deleteFlag != null"
>
#{deleteFlag,jdbcType=INTEGER},
</if>
<if
test=
"createdId != null"
>
#{createdId,jdbcType=INTEGER},
</if>
<if
test=
"createdTime != null"
>
#{createdTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.pica.cloud.account.account.server.entity.LogPWDModifyEntity"
>
update log_pwd_modify
<set
>
<if
test=
"mobilePhone != null"
>
mobile_phone = #{mobilePhone,jdbcType=VARCHAR},
</if>
<if
test=
"modifiedTime != null"
>
modified_time = #{modifiedTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"modifiedId != null"
>
modified_id = #{modifiedId,jdbcType=INTEGER},
</if>
<if
test=
"oldPwd != null"
>
old_pwd = #{oldPwd,jdbcType=VARCHAR},
</if>
<if
test=
"newPwd != null"
>
new_pwd = #{newPwd,jdbcType=VARCHAR},
</if>
<if
test=
"deleteFlag != null"
>
delete_flag = #{deleteFlag,jdbcType=INTEGER},
</if>
<if
test=
"createdId != null"
>
created_id = #{createdId,jdbcType=INTEGER},
</if>
<if
test=
"createdTime != null"
>
created_time = #{createdTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.pica.cloud.account.account.server.entity.LogPWDModifyEntity"
>
update log_pwd_modify
set mobile_phone = #{mobilePhone,jdbcType=VARCHAR},
modified_time = #{modifiedTime,jdbcType=TIMESTAMP},
modified_id = #{modifiedId,jdbcType=INTEGER},
old_pwd = #{oldPwd,jdbcType=VARCHAR},
new_pwd = #{newPwd,jdbcType=VARCHAR},
delete_flag = #{deleteFlag,jdbcType=INTEGER},
created_id = #{createdId,jdbcType=INTEGER},
created_time = #{createdTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
server/src/main/resources/mybatis/LogUserInfoEntityMapper.xml
0 → 100644
浏览文件 @
350459e9
此差异已折叠。
点击以展开。
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录