| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package jnpf.model.product;
- import jnpf.model.productEntry.ProductEntryInfoVO;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import java.math.BigDecimal;
- import java.util.List;
- /**
- *
- * Product模型
- * @版本: V3.1.0
- * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * @作者: JNPF开发平台组
- * @日期: 2021-07-10 10:40:59
- */
- @Data
- public class ProductInfoVO{
- @Schema(description ="主键")
- private String id;
- @Schema(description ="订单编号")
- private String code;
- @Schema(description ="客户id")
- private String customerId;
- @Schema(description ="客户名称")
- private String customerName;
- @Schema(description ="审核人")
- private String auditName;
- @Schema(description ="审核日期")
- private Long auditDate;
- @Schema(description ="发货仓库")
- private String goodsWarehouse;
- @Schema(description ="发货通知时间")
- private Long goodsDate;
- @Schema(description ="发货通知人")
- private String goodsName;
- @Schema(description ="收款方式")
- private String gatheringType;
- @Schema(description ="业务员")
- private String business;
- @Schema(description ="送货地址")
- private String address;
- @Schema(description ="联系方式")
- private String contactTel;
- @Schema(description ="收货消息")
- private Integer harvestMsg;
- @Schema(description ="收货仓库")
- private String harvestWarehouse;
- @Schema(description ="代发客户")
- private String issuingName;
- @Schema(description ="让利金额")
- private BigDecimal partPrice;
- @Schema(description ="优惠金额")
- private BigDecimal reducedPrice;
- @Schema(description ="折后金额")
- private BigDecimal discountPrice;
- @Schema(description ="备注")
- private String description;
- @Schema(description ="子表数据")
- private List<ProductEntryInfoVO> productEntryList;
- }
|