package com.ruoyi.production.dto;
|
|
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.util.Date;
|
|
/**
|
* @author :yys
|
* @date : 2025/7/22 9:35
|
*/
|
@Data
|
@ApiModel
|
public class SalesLedgerProductDto {
|
|
/**
|
* 销售合同号
|
*/
|
@Excel(name = "销售合同号")
|
@ApiModelProperty(value = "销售合同号")
|
private String salesContractNo;
|
|
/**
|
* 客户合同号
|
*/
|
@Excel(name = "客户合同号")
|
@ApiModelProperty(value = "客户合同号")
|
private String customerContractNo;
|
|
/**
|
* 项目名称
|
*/
|
@Excel(name = "项目名称")
|
@ApiModelProperty(value = "项目名称")
|
private String projectName;
|
|
|
/**
|
* 客户名称
|
*/
|
@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;
|
|
|
}
|