parent
2c3dfdb00d
commit
3ae97de844
@ -0,0 +1,52 @@
|
||||
package com.yami.shop.bean.model;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("tz_user_portfolio")
|
||||
public class UserPortfolio {
|
||||
// 基本信息
|
||||
private Integer portfolioId; //档案id
|
||||
private Integer userId; // 会员ID
|
||||
private String name; // 姓名
|
||||
private Date birthDate; // 出生日期
|
||||
private String gender; // 性别
|
||||
private String ethnicity; // 民族
|
||||
private String nativePlace; // 籍贯
|
||||
private String idCardNumber; // 身份证号码
|
||||
|
||||
// 联系信息
|
||||
private String address; // 住址
|
||||
private String phoneNumber; // 联系电话
|
||||
private String emailAddress; // 电子邮件地址
|
||||
private String emergencyContactName; // 紧急联系人姓名
|
||||
private String emergencyContactPhone; // 紧急联系人电话
|
||||
|
||||
// 健康信息
|
||||
private String healthStatus; // 健康状况
|
||||
private String medicalInsuranceInfo; // 医疗保险信息
|
||||
private String primaryDoctorContact; // 主要医生联系信息
|
||||
private String longTermMedicationInfo; // 长期用药信息
|
||||
|
||||
// 预先规划的殡葬信息
|
||||
private String funeralMethod; // 殡葬方式(火葬,土葬,海葬等)
|
||||
private String ceremonyType; // 预期的礼仪类型(宗教,非宗教,军人等)
|
||||
private String cemeteryInfo; // 墓地信息(如果有的话)
|
||||
private boolean prePurchasedGrave; // 是否有预购墓地
|
||||
private String preReservedFuneralLocation; // 是否有预定的葬礼地点
|
||||
private boolean hasWillOrLivingDirective; // 是否有遗嘱或活葬指示
|
||||
|
||||
// 财务信息
|
||||
private String paymentMethod; // 支付方式
|
||||
private String bankAccountInfo; // 银行账户信息
|
||||
private double prePaidFuneralCost; // 预先支付的葬礼费用(如果有的话)
|
||||
|
||||
// 法律文件
|
||||
private String willCopy; // 遗嘱复印件
|
||||
private String preDeathAgentDesignation; // 生前事务代理人指定书
|
||||
private String medicalAgentDesignation; // 医疗事务代理人指定书
|
||||
private String lifeSupportDecision; // 生命维持治疗决定书
|
||||
}
|
||||
Loading…
Reference in new issue