liyong
9 小时以前 1cf91e355038837f30f2d727507b2229263d7de7
src/main/java/com/ruoyi/sales/pojo/ShippingInfo.java
@@ -18,12 +18,6 @@
@TableName("shipping_info")
public class ShippingInfo {
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    @ApiModelProperty(value = "销售台账id")
    private Long salesLedgerId;
    @TableField(exist = false)
    @ApiModelProperty(value = "销售合同号")
    @Excel(name = "销售合同号")
@@ -34,12 +28,41 @@
    @Excel(name = "客户名称")
    private String customerName;
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    @ApiModelProperty(value = "销售台账id")
    private Long salesLedgerId;
    @ApiModelProperty(value = "销售报价产品表id")
    private Long salesLedgerProductId;
    @ApiModelProperty(value = "状态 待审核 审核中 ,审核拒绝 审核通过 已发货")
    @Excel(name = "状态")
    private String status;
    @ApiModelProperty(value = "发货日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "发货日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date shippingDate;
    @ApiModelProperty(value = "发货编号")
    @Excel(name = "发货编号")
    private String shippingNo;
    @ApiModelProperty(value = "快递单号")
    @Excel(name = "快递单号")
    private String expressNumber;
    @ApiModelProperty(value = "快递公司")
    @Excel(name = "快递公司")
    private String expressCompany;
    @ApiModelProperty(value = "发货类型")
    @Excel(name = "发货类型")
    private String type;
    @ApiModelProperty(value = "发货车牌号")
    @Excel(name = "发货车牌号")
    private String shippingCarNumber;