package jnpf.model.salesorder; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; /** * 销售订单 * * @author JNPF开发平台组 * @version V3.1.0 * @copyright 引迈信息技术有限公司 * @date 2021/3/15 8:46 */ @Data public class SalesOrderForm { @Schema(description = "流程主键") private String flowId; @Schema(description = "流程标题") private String flowTitle; @Schema(description = "流程等级") private Integer flowUrgent; @Schema(description = "流程单据") private String billNo; @Schema(description = "业务人员") private String salesman; @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; @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; @Schema(description = "提交/保存 0-1") private String status; @Schema(description = "明细") private List entryList = new ArrayList<>(); }