package com.doumee.dao.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 单项物品计价VO
|
*
|
* @Author : Rk
|
* @create 2026/4/14
|
*/
|
@Data
|
@ApiModel("单项物品计价")
|
public class ItemPriceVO {
|
|
@ApiModelProperty("物品类型ID")
|
private Integer categoryId;
|
|
@ApiModelProperty("物品类型名称")
|
private String categoryName;
|
|
@ApiModelProperty("数量")
|
private Integer quantity;
|
|
@ApiModelProperty("单价(分)")
|
private Long unitPrice;
|
|
@ApiModelProperty("小计(分)")
|
private Long subtotal;
|
|
// ========== 异地存取额外字段 ==========
|
|
@ApiModelProperty("起步距离(km)")
|
private BigDecimal startDistance;
|
|
@ApiModelProperty("起步价(分)")
|
private Long startPrice;
|
|
@ApiModelProperty("超出距离单位(km)")
|
private BigDecimal extraDistance;
|
|
@ApiModelProperty("超出距离单价(分)")
|
private Long extraPrice;
|
}
|