package com.ruoyi.procurementrecord.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDate;
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
/**
|
* @author :yys
|
* @date : 2025/7/7 16:07
|
*/
|
@Data
|
public class ProcurementAddDto {
|
|
private List<Details> details;
|
|
private String nickName;
|
|
/**
|
* 入库类型 1-采购 2-生产 3-自定义
|
*/
|
private Integer type;
|
|
private String typeName;
|
private Integer purchaseLedgerId;
|
private Long qualityInspectId;
|
|
@ApiModelProperty("入库时间")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss ")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private LocalDateTime inboundTime;
|
|
}
|