package com.ruoyi.production.dto;
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDate;
|
import java.util.Date;
|
|
/**
|
* @author :yys
|
* @date : 2025/7/21 15:42
|
*/
|
@Data
|
@ApiModel
|
public class SalesLedgerSchedulingDto {
|
|
@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;
|
|
/**
|
* 完工数量
|
*/
|
@Excel(name = "完工数量")
|
@ApiModelProperty(value = "完工数量")
|
private BigDecimal successNum;
|
|
@ApiModelProperty(value = "租户ID")
|
private Long tenantId;
|
|
}
|