Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-csf
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-csf
Commits
e23ba924
Commit
e23ba924
authored
Oct 09, 2025
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
c9bc1d61
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
90 additions
and
0 deletions
+90
-0
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
+7
-0
yd-csf-service/src/main/java/com/yd/csf/service/model/Policyholder.java
+83
-0
No files found.
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
View file @
e23ba924
...
...
@@ -446,6 +446,13 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
return
Result
.
success
();
}
// /**
// * 保存健康问卷和预约对象关系绑定
// * @return
// */
// public Result objectSaveQuestion() {
//
// }
/**
* 校验预约信息是否存在
...
...
yd-csf-service/src/main/java/com/yd/csf/service/model/Policyholder.java
View file @
e23ba924
...
...
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.annotation.IdType;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
lombok.Getter
;
import
lombok.Setter
;
...
...
@@ -26,6 +27,7 @@ public class Policyholder implements Serializable {
private
static
final
long
serialVersionUID
=
1L
;
@TableId
(
value
=
"id"
,
type
=
IdType
.
AUTO
)
private
Long
id
;
...
...
@@ -412,4 +414,85 @@ public class Policyholder implements Serializable {
*/
@TableField
(
"update_time"
)
private
LocalDateTime
updateTime
;
/**
* 吸烟量(支/天)
*/
@TableField
(
"smoking_volume"
)
private
String
smokingVolume
;
/**
* 货币(字典)
*/
@TableField
(
"currency"
)
private
String
currency
;
/**
* 公司名称(英文)
*/
@TableField
(
"company_name_en"
)
private
String
companyNameEn
;
/**
* 公司商业登记号码
*/
@TableField
(
"company_business_no"
)
private
String
companyBusinessNo
;
/**
* 公司注册日期
*/
@TableField
(
"company_register_time"
)
private
LocalDateTime
companyRegisterTime
;
/**
* 公司注册地区(字典)
*/
@TableField
(
"company_register_region"
)
private
String
companyRegisterRegion
;
/**
* 公司邮箱
*/
@TableField
(
"company_email"
)
private
String
companyEmail
;
/**
* 公司登记地址
*/
@TableField
(
"company_enter_address"
)
private
String
companyEnterAddress
;
/**
* 授权代表姓名中文-名字
*/
@TableField
(
"auth_name_cn"
)
private
String
authNameCn
;
/**
* 授权代表姓名英文-名字
*/
@TableField
(
"auth_name_en"
)
private
String
authNameEn
;
/**
* 授权代表职称
*/
@TableField
(
"auth_professional"
)
private
String
authProfessional
;
/**
* 授权代表电话区号
*/
@TableField
(
"auth_mobile_code"
)
private
String
authMobileCode
;
/**
* 授权代表电话
*/
@TableField
(
"auth_mobile"
)
private
String
authMobile
;
}
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