1 changed files with 50 additions and 0 deletions
@ -0,0 +1,50 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Builder; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* 基础价格按品类计费 视图实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-04-02 |
||||
*/ |
||||
@Builder |
||||
@Data |
||||
public class PriceDispatchAddClientVO implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ApiModelProperty(value = "品类id") |
||||
private Long categoryId; |
||||
@ApiModelProperty(value = "分货费") |
||||
private Double sortPrice; |
||||
@ApiModelProperty(value = "装卸费") |
||||
private Double handlingPrice; |
||||
@ApiModelProperty(value = "平移费") |
||||
private Double relocationPrice; |
||||
@ApiModelProperty(value = "上楼费") |
||||
private Double upstairsDeliveryPrice; |
||||
@ApiModelProperty(value = "配送-上楼费免费楼层") |
||||
private Integer dispatchStairsCarryingCharge; |
||||
|
||||
} |
Loading…
Reference in new issue