29 changed files with 355 additions and 240 deletions
@ -1,50 +0,0 @@
|
||||
/* |
||||
* 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; |
||||
|
||||
} |
@ -1,69 +0,0 @@
|
||||
package com.logpm.distribution.dto; |
||||
|
||||
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.List; |
||||
import java.util.function.Consumer; |
||||
|
||||
@Data |
||||
public class PushInstallDTO implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
private String name; |
||||
|
||||
|
||||
private String tel; |
||||
|
||||
|
||||
private String address; |
||||
|
||||
|
||||
private String balance_people; |
||||
|
||||
|
||||
private String balance_type; |
||||
|
||||
|
||||
private String balance_name; |
||||
|
||||
|
||||
private List<Order> order; |
||||
|
||||
private List<OrderDetail> order_detail; |
||||
|
||||
@Data |
||||
public static class Order implements Serializable{ |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
private String waybill_no; |
||||
private String all_num; |
||||
private String end_num; |
||||
private String order_no; |
||||
|
||||
} |
||||
|
||||
|
||||
|
||||
@Data |
||||
public static class OrderDetail implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
private String waybill_no; |
||||
private String package_code; |
||||
private String level1_type; |
||||
private String level2_type; |
||||
private String level3_type; |
||||
private String materials; |
||||
private String order_no; |
||||
private String number; |
||||
|
||||
|
||||
} |
||||
|
||||
|
||||
|
||||
} |
Loading…
Reference in new issue