
10 changed files with 167 additions and 26 deletions
@ -0,0 +1,34 @@ |
|||
package com.yxt.anrui.as.api.asbusrepairbill; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/7/1 14:01 |
|||
*/ |
|||
@Data |
|||
public class InsuranceRecordVo { |
|||
|
|||
@ApiModelProperty("工单sid") |
|||
private String billSid; |
|||
@ApiModelProperty("使用保险方Key") |
|||
private String useInsurerKey; |
|||
@ApiModelProperty("使用保险方") |
|||
private String useInsurer; |
|||
@ApiModelProperty("使用险种key") |
|||
private String insuranceTypeKey; |
|||
@ApiModelProperty("使用险种") |
|||
private String insuranceType; |
|||
@ApiModelProperty("保险公司key") |
|||
private String insuranceCompanyKey; |
|||
@ApiModelProperty("保险公司") |
|||
private String insuranceCompany; |
|||
@ApiModelProperty("报案号") |
|||
private String claimBillNo; |
|||
@ApiModelProperty("勘察员及电话") |
|||
private String investigator; |
|||
@ApiModelProperty("定损员及电话") |
|||
private String lossAdjuster; |
|||
} |
@ -0,0 +1,40 @@ |
|||
package com.yxt.anrui.as.api.asbusrepairbillinsurancerecord; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
import com.yxt.common.core.domain.BaseEntity; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/7/1 13:57 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "维修工单-保险信息列表", description = "维修工单-保险信息列表") |
|||
@TableName("as_busrepair_bill_insurance_record") |
|||
public class AsBusrepairBillInsuranceRecord extends BaseEntity { |
|||
|
|||
@ApiModelProperty("工单sid") |
|||
private String billSid; |
|||
@ApiModelProperty("使用保险方Key") |
|||
private String useInsurerKey; |
|||
@ApiModelProperty("使用保险方") |
|||
private String useInsurer; |
|||
@ApiModelProperty("使用险种key") |
|||
private String insuranceTypeKey; |
|||
@ApiModelProperty("使用险种") |
|||
private String insuranceType; |
|||
@ApiModelProperty("保险公司key") |
|||
private String insuranceCompanyKey; |
|||
@ApiModelProperty("保险公司") |
|||
private String insuranceCompany; |
|||
@ApiModelProperty("报案号") |
|||
private String claimBillNo; |
|||
@ApiModelProperty("勘察员及电话") |
|||
private String investigator; |
|||
@ApiModelProperty("定损员及电话") |
|||
private String lossAdjuster; |
|||
|
|||
} |
Loading…
Reference in new issue