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.util.Date;
|
|
/**
|
* @author :yys
|
* @date : 2025/7/21 16:47
|
*/
|
@Data
|
@ApiModel
|
public class SalesLedgerSchedulingProcessDto {
|
|
@ApiModelProperty(value = "销售产品ID")
|
private Long salesLedgerProductId;
|
|
@ApiModelProperty(value = "销售台账ID")
|
private Long salesLedgerId;
|
|
@ApiModelProperty(value = "开始时间")
|
private String schedulingDateStart;
|
|
@ApiModelProperty(value = "结束时间")
|
private String schedulingDateEnd;
|
|
/**
|
* id
|
*/
|
private Long id;
|
|
/**
|
* 销售合同号
|
*/
|
@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 schedulingDate;
|
|
/**
|
* 客户名称
|
*/
|
@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 Integer status;
|
|
/**
|
* 派工人
|
*/
|
@Excel(name = "派工人")
|
@ApiModelProperty(value = "派工人")
|
private String schedulingUserName;
|
|
/**
|
* 派工人
|
*/
|
@ApiModelProperty(value = "派工人id")
|
private Long schedulingUserId;
|
|
|
/**
|
* 排产数量
|
*/
|
@Excel(name = "排产数量")
|
@ApiModelProperty(value = "排产数量")
|
private BigDecimal schedulingNum;
|
|
/**
|
* 已排产数量
|
*/
|
@ApiModelProperty(value = "已排产数量")
|
private BigDecimal successNum;
|
|
private Long tenantId;
|
|
}
|