|
@@ -12,130 +12,130 @@ import java.util.Date;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * 律師諮詢訂單視圖對象(包含律師信息)
|
|
|
|
|
|
|
+ * 律师咨询订单视图对象(包含律师信息)
|
|
|
*
|
|
*
|
|
|
* @author system
|
|
* @author system
|
|
|
* @since 2025-01-XX
|
|
* @since 2025-01-XX
|
|
|
*/
|
|
*/
|
|
|
@Data
|
|
@Data
|
|
|
@JsonInclude
|
|
@JsonInclude
|
|
|
-@ApiModel(value = "LawyerConsultationOrderVO對象", description = "諮詢訂單視圖對象(包含律師信息)")
|
|
|
|
|
|
|
+@ApiModel(value = "LawyerConsultationOrderVO对象", description = "咨询订单视图对象(包含律师信息)")
|
|
|
public class LawyerConsultationOrderVO implements Serializable {
|
|
public class LawyerConsultationOrderVO implements Serializable {
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "主鍵")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
private Integer id;
|
|
private Integer id;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "訂單編號")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "订单编号")
|
|
|
private String orderNumber;
|
|
private String orderNumber;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "客戶端用戶ID")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "客户端用户ID")
|
|
|
private Integer clientUserId;
|
|
private Integer clientUserId;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "律師用戶ID")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "律师用户ID")
|
|
|
private Integer lawyerUserId;
|
|
private Integer lawyerUserId;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "法律問題場景ID")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "法律问题场景ID")
|
|
|
private Integer problemScenarId;
|
|
private Integer problemScenarId;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "問題描述")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "问题描述")
|
|
|
private String problemDescription;
|
|
private String problemDescription;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "訂單金額,單位分")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "订单金额,单位分")
|
|
|
private Integer orderAmount;
|
|
private Integer orderAmount;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "諮詢費用,單位分")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "咨询费用,单位分")
|
|
|
private Integer consultationFee;
|
|
private Integer consultationFee;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "諮詢開始時間")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "咨询开始时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private Date startTime;
|
|
private Date startTime;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "諮詢結束時間")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "咨询结束时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private Date endTime;
|
|
private Date endTime;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "訂單狀態, 0:待支付, 1:已支付, 2:進行中, 3:已完成, 4:已取消")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "订单状态, 0:待支付, 1:已支付, 2:进行中, 3:已完成, 4:已取消")
|
|
|
private Integer orderStatus;
|
|
private Integer orderStatus;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "支付狀態, 0:未支付, 1:已支付")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "支付状态, 0:未支付, 1:已支付")
|
|
|
private Integer paymentStatus;
|
|
private Integer paymentStatus;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "下單時間")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "下单时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private Date orderTime;
|
|
private Date orderTime;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "支付時間")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "支付时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private Date paymentTime;
|
|
private Date paymentTime;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "訂單有效期")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "订单有效期")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private Date validityPeriod;
|
|
private Date validityPeriod;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "用戶評分, 1-5星")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "用户评分, 1-5星")
|
|
|
private Integer rating;
|
|
private Integer rating;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "用戶評價內容")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "用户评价内容")
|
|
|
private String comment;
|
|
private String comment;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "創建時間")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private Date createdTime;
|
|
private Date createdTime;
|
|
|
|
|
|
|
|
- // ========== 律師信息 ==========
|
|
|
|
|
|
|
+ // ========== 律师信息 ==========
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "律師姓名")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "律师姓名")
|
|
|
private String lawyerName;
|
|
private String lawyerName;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "律師手機號")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "律师手机号")
|
|
|
private String lawyerPhone;
|
|
private String lawyerPhone;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "律師郵箱")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "律师邮箱")
|
|
|
private String lawyerEmail;
|
|
private String lawyerEmail;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "律師執業證號")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "律师执业证号")
|
|
|
private String lawyerCertificateNo;
|
|
private String lawyerCertificateNo;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "所屬律師事務所")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "所属律师事务所")
|
|
|
private String lawFirm;
|
|
private String lawFirm;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "執業年限")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "执业年限")
|
|
|
private Integer practiceYears;
|
|
private Integer practiceYears;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "專業領域,多個用逗號分隔")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "专业领域,多个用逗号分隔")
|
|
|
private String specialtyFields;
|
|
private String specialtyFields;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "資質認證狀態, 0:未認證, 1:認證中, 2:已認證, 3:認證失敗")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "资质认证状态, 0:未认证, 1:认证中, 2:已认证, 3:认证失败")
|
|
|
private Integer certificationStatus;
|
|
private Integer certificationStatus;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "服務評分, 0-100分")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "服务评分, 0-100分")
|
|
|
private Integer serviceScore;
|
|
private Integer serviceScore;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "服務次數")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "服务次数")
|
|
|
private Integer serviceCount;
|
|
private Integer serviceCount;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "諮詢收費標準(單位分/小時)")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "咨询收费标准(单位分/小时)")
|
|
|
private Integer lawyerConsultationFee;
|
|
private Integer lawyerConsultationFee;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "所屬省份")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "所属省份")
|
|
|
private String province;
|
|
private String province;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "所屬城市")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "所属城市")
|
|
|
private String city;
|
|
private String city;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "所屬區縣")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "所属区县")
|
|
|
private String district;
|
|
private String district;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "詳細地址")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "详细地址")
|
|
|
private String address;
|
|
private String address;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "頭像")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "头像")
|
|
|
private String headImg;
|
|
private String headImg;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "昵稱")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "昵称")
|
|
|
private String nickName;
|
|
private String nickName;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "個人簡介(詳細)")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "个人简介(详细)")
|
|
|
private String personalIntroduction;
|
|
private String personalIntroduction;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "领域列表")
|
|
@ApiModelProperty(value = "领域列表")
|