package jnpf.model.salesorder; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import jakarta.validation.constraints.NotBlank; import jakarta.validation.constraints.NotNull; import java.math.BigDecimal; import java.util.List; /** * 销售订单 * * @author JNPF开发平台组 * @version V3.1.0 * @copyright 引迈信息技术有限公司 * @date 2021/3/15 8:46 */ @Data public class SalesOrderInfoVO { @Schema(description = "明细") List entryList; @Schema(description = "主键") private String id; @NotBlank(message = "流程主键不能为空") @Schema(description = "流程主键") private String flowId; @NotBlank(message = "流程标题不能为空") @Schema(description = "流程标题") private String flowTitle; @NotNull(message = "流程等级不能为空") @Schema(description = "流程等级") private Integer flowUrgent; @NotBlank(message = "流程单据不能为空") @Schema(description = "流程单据") private String billNo; @Schema(description = "业务人员") private String salesman; @NotBlank(message = "客户名称不能为空") @Schema(description = "客户名称") private String customerName; @Schema(description = "联系人") private String contacts; @Schema(description = "联系电话") private String contactPhone; @Schema(description = "客户地址") private String customerAddres; @Schema(description = "发票编码") private String ticketNum; @NotBlank(message = "开票日期不能为空") @Schema(description = "开票日期") private Long ticketDate; @Schema(description = "发票类型") private String invoiceType; @Schema(description = "付款方式") private String paymentMethod; @Schema(description = "付款金额") private BigDecimal paymentMoney; @Schema(description = "销售日期") private Long salesDate; @Schema(description = "相关附件") private String fileJson; @Schema(description = "描述") private String description; }