package doumeemes.dao.ext.dto; 
 | 
  
 | 
import cn.afterturn.easypoi.excel.annotation.Excel; 
 | 
import com.fasterxml.jackson.annotation.JsonFormat; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2023/7/26 17:17 
 | 
 */ 
 | 
@Data 
 | 
public class WorkPlansSaveDTO { 
 | 
  
 | 
    @ApiModelProperty(value = "成品计划主键") 
 | 
    private Integer workPlansId; 
 | 
  
 | 
    @ApiModelProperty(value = "物料主键") 
 | 
    private Integer materialId; 
 | 
  
 | 
    @ApiModelProperty(value = "物料单位主键") 
 | 
    private Integer unitId; 
 | 
  
 | 
    @ApiModelProperty(value = "计划完成日期") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    private Date planDate; 
 | 
  
 | 
    @ApiModelProperty(value = "工厂主键") 
 | 
    private Integer factoryId; 
 | 
  
 | 
    @ApiModelProperty(value = "计划数量") 
 | 
    private Integer num; 
 | 
  
 | 
    @ApiModelProperty(value = "批次") 
 | 
    private String batch; 
 | 
  
 | 
    @ApiModelProperty(value = "优先级") 
 | 
    private Integer urgent; 
 | 
  
 | 
    @ApiModelProperty(value = "计划开始日期") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    private Date startDate; 
 | 
  
 | 
    @ApiModelProperty(value = "销售单号" ) 
 | 
    private String salesorder; 
 | 
  
 | 
} 
 |