ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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 ProductCrForm  {
    @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;
 
}