package com.ruoyi.production.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author :yys
|
* @date : 2025/11/3 9:35
|
*/
|
@Data
|
public class DaiDto{
|
|
@Excel(name = "待排数量")
|
private BigDecimal daiNum;
|
|
@ApiModelProperty(value = "销售产品ID")
|
private Long salesLedgerProductId;
|
|
@ApiModelProperty(value = "销售台账ID")
|
private Long salesLedgerId;
|
|
/**
|
* 销售合同号
|
*/
|
@Excel(name = "销售合同号")
|
@ApiModelProperty(value = "销售合同号")
|
private String salesContractNo;
|
|
/**
|
* 客户合同号
|
*/
|
@Excel(name = "客户合同号")
|
@ApiModelProperty(value = "客户合同号")
|
private String customerContractNo;
|
|
/**
|
* 项目名称
|
*/
|
@Excel(name = "项目名称")
|
@ApiModelProperty(value = "项目名称")
|
private String projectName;
|
|
/**
|
* 录入日期
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "录入日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@ApiModelProperty(value = "录入日期")
|
private Date entryDate;
|
|
@ApiModelProperty(value = "录入日期开始")
|
private String entryDateStart;
|
|
@ApiModelProperty(value = "录入日期结束")
|
private String entryDateEnd;
|
|
/**
|
* 客户名称
|
*/
|
@Excel(name = "客户名称")
|
@ApiModelProperty(value = "客户名称")
|
private String customerName;
|
|
|
/**
|
* 产品大类
|
*/
|
@Excel(name = "产品大类")
|
@ApiModelProperty(value = "产品大类")
|
private String productCategory;
|
|
/**
|
* 规格型号
|
*/
|
@Excel(name = "规格型号")
|
@ApiModelProperty(value = "规格型号")
|
private String specificationModel;
|
|
/**
|
* 单位
|
*/
|
@Excel(name = "单位")
|
@ApiModelProperty(value = "单位")
|
private String unit;
|
|
/**
|
* 数量
|
*/
|
@Excel(name = "数量")
|
@ApiModelProperty(value = "数量")
|
private BigDecimal quantity;
|
|
/**
|
* 排产数量
|
*/
|
@Excel(name = "排产数量")
|
@ApiModelProperty(value = "排产数量")
|
private BigDecimal schedulingNum;
|
|
@ApiModelProperty(value = "租户ID")
|
private Long tenantId;
|
|
}
|