|
|
|
|
@ -2,6 +2,8 @@ package org.springblade.desk.produce.pojo.vo; |
|
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
|
|
import lombok.Data; |
|
|
|
|
import org.springblade.core.tool.utils.DateUtil; |
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
|
@Data |
|
|
|
|
@ -11,6 +13,7 @@ public class SaveSubOrderVo { |
|
|
|
|
private Long cslId; |
|
|
|
|
@Schema(description = "质量编号") |
|
|
|
|
private String qualityNumber; |
|
|
|
|
@DateTimeFormat(pattern = DateUtil.PATTERN_DATETIME) |
|
|
|
|
@Schema(description = "到期日期") |
|
|
|
|
private Date dueDate; |
|
|
|
|
} |
|
|
|
|
|