李白
昨天 e7e6d39b095b6a763e54ab34631171c3de32ec9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
 
}