
2 changed files with 79 additions and 0 deletions
@ -0,0 +1,51 @@ |
|||
package com.yxt.anrui.as.api.asbusclaimbill; |
|||
|
|||
import com.yxt.common.core.utils.ExportEntityMap; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2024/5/8 |
|||
**/ |
|||
@Data |
|||
public class AsBusclaimBillExcelVo { |
|||
|
|||
@ApiModelProperty("索赔单号") |
|||
@ExportEntityMap(CnName = "索赔单号", EnName = "billNo") |
|||
private String billNo; |
|||
//车架号
|
|||
@ExportEntityMap(CnName = "车架号", EnName = "vinNo") |
|||
private String vinNo; |
|||
|
|||
//工时费
|
|||
@ExportEntityMap(CnName = "工时费", EnName = "hourAmount") |
|||
@ApiModelProperty("工时费") |
|||
private String hourAmount; |
|||
|
|||
//材料费
|
|||
@ExportEntityMap(CnName = "材料费", EnName = "goodsAmount") |
|||
@ApiModelProperty("材料费") |
|||
private String goodsAmount; |
|||
|
|||
//外出费
|
|||
@ExportEntityMap(CnName = "外出费", EnName = "claimOutAmount") |
|||
@ApiModelProperty("索赔外出费") |
|||
private String claimOutAmount; |
|||
|
|||
//厂家补助
|
|||
@ExportEntityMap(CnName = "厂家补助", EnName = "claimSubsidyAmount") |
|||
@ApiModelProperty("索赔厂家补助") |
|||
private String claimSubsidyAmount; |
|||
|
|||
//其他费用
|
|||
@ExportEntityMap(CnName = "其他费用", EnName = "claimOtherAmount") |
|||
@ApiModelProperty("索赔其他费用") |
|||
private String claimOtherAmount; |
|||
|
|||
@ExportEntityMap(CnName = "状态", EnName = "state") |
|||
private String state; |
|||
} |
Loading…
Reference in new issue