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
 
 
package jnpf.model.product;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 *
 * Product模型
 * @版本: V3.1.0
 * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
 * @作者: JNPF开发平台组
 * @日期: 2021-07-10 10:40:59
 */
@Data
public class ProductListVO{
    @Schema(description ="主键")
    private String id;
    @Schema(description ="订单编号")
    private String code;
    @Schema(description ="客户名称")
    private String customerName;
    @Schema(description ="业务员")
    private String business;
    @Schema(description ="送货地址")
    private String address;
    @Schema(description ="联系方式")
    private String contactTel;
    @Schema(description ="制单人")
    private String salesmanName;
    @Schema(description ="审核状态")
    private Integer auditState;
    @Schema(description ="发货状态")
    private Integer goodsState;
    @Schema(description ="关闭状态")
    private Integer closeState;
    @Schema(description ="关闭日期")
    private Long  closeDate;
    @Schema(description ="联系人")
    private String contactName;
}