package com.chinaztt.mes.plan.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Data
|
//销售订单分页查询
|
public class CustomerOrderVO2 {
|
|
//销售订单产品单id
|
private Long id;
|
|
//合同编号
|
private String contractNo;
|
|
//工程名称
|
private String entityName;
|
|
//添加人
|
private String createUser;
|
|
//添加日期
|
private LocalDateTime createTime;
|
|
//下单日期
|
private LocalDateTime placeOrderDate;
|
|
//交货时间
|
private LocalDateTime deliveryDate;
|
|
//客户名称
|
private String customerName;
|
|
//销售订单状态
|
private String coState;
|
|
//审核状态
|
private String isAudit;
|
|
//订单来源
|
private String sourceId;
|
|
//产品类型
|
private String productType;
|
|
//产品编号
|
private String partNo;
|
|
//产品名称
|
private String productName;
|
|
//规格型号
|
private String customerPartSpec;
|
|
//单位
|
private String otcUnit;
|
|
//数量
|
private BigDecimal buyQtyDue;
|
|
//工艺文件号
|
private String docNumber;
|
|
//工艺文件id
|
private String technologyDocumentId;
|
|
//合同正本状态
|
private String returnStatus;
|
|
//正本状态
|
private String originalContractStatus;
|
|
//业务员
|
private String salesMan;
|
|
/**
|
* 制造属性
|
*/
|
@ApiModelProperty(value = "制造属性")
|
private String manufactureAttr;
|
|
/**
|
* 备注
|
*/
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
|
}
|