package com.by4cloud.platformx.business.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import jakarta.persistence.Column;
|
import lombok.Data;
|
|
import java.util.Date;
|
import java.util.List;
|
|
@Data
|
public class OutBoundAddDTO {
|
|
@Schema(description = "客商名称")
|
private String busGuestName;
|
|
@Schema(description = "客商ID")
|
private Long busGuestId;
|
|
@Schema(description = "出库时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date outBoundTime;
|
|
@Schema(description = "单据名称")
|
private String outBoundAttNames;
|
|
@Schema(description = "单据路径")
|
private String outBoundAttPaths;
|
|
@Schema(description = "出库标的物")
|
private List<OutSubjectMatterAddDTO> subjectMatterList;
|
|
}
|