package com.by4cloud.platformx.business.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
@Data
|
public class OutBoundQueryDTO {
|
|
@Schema(description = "出库批次号")
|
private String batchNumber;
|
|
@Schema(description = "客商名称")
|
private String busGuestName;
|
|
@Schema(description = "标的物名称")
|
private String subjectMatterName;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private Date startTime;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private Date endTime;
|
}
|