hsy
2026-08-28 a8e4132c3e2e9c3b3fcb0360901b35571b6464ea
src/main/java/com/ruoyi/sales/pojo/ShippingInfo.java
@@ -3,7 +3,7 @@
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
@@ -19,73 +19,116 @@
public class ShippingInfo {
    @TableField(exist = false)
    @ApiModelProperty(value = "销售合同号")
    @Schema(description = "销售合同号")
    @Excel(name = "销售合同号")
    private String salesContractNo;
    @TableField(exist = false)
    @ApiModelProperty(value = "客户名称")
    @Schema(description = "客户名称")
    @Excel(name = "客户名称")
    private String customerName;
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    @ApiModelProperty(value = "销售台账id")
    @Schema(description = "销售台账id")
    private Long salesLedgerId;
    @ApiModelProperty(value = "销售报价产品表id")
    @Schema(description = "销售报价产品表id")
    private Long salesLedgerProductId;
    @ApiModelProperty(value = "状态 待审核 审核中 ,审核拒绝 审核通过")
    @Schema(description = "状态 待审核 审核中 ,审核拒绝 审核通过 已发货")
    @Excel(name = "状态")
    private String status;
    @ApiModelProperty(value = "发货日期")
    @Schema(description = "发货日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "发货日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date shippingDate;
    @ApiModelProperty(value = "发货编号")
    @Schema(description = "发货编号")
    @Excel(name = "发货编号")
    private String shippingNo;
    @ApiModelProperty(value = "快递单号")
    @Schema(description = "快递单号")
    @Excel(name = "快递单号")
    private String expressNumber;
    @ApiModelProperty(value = "快递公司")
    @Schema(description = "快递公司")
    @Excel(name = "快递公司")
    private String expressCompany;
    @ApiModelProperty(value = "发货类型")
    @Schema(description = "发货类型")
    @Excel(name = "发货类型")
    private String type;
    @ApiModelProperty(value = "发货车牌号")
    @Schema(description = "发货车牌号")
    @Excel(name = "发货车牌号")
    private String shippingCarNumber;
    @ApiModelProperty(value = "创建时间")
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
    @ApiModelProperty(value = "修改时间")
    @Schema(description = "修改时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
    @ApiModelProperty(value = "创建用户")
    @Schema(description = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Integer createUser;
    @ApiModelProperty(value = "修改用户")
    @Schema(description = "修改用户")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
    @ApiModelProperty(value = "租户ID")
    @Schema(description = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
    @Schema(description = "发货单据(文本)")
    @Excel(name = "发货单据")
    private String shippingDocument;
    @Schema(description = "是否对账(勾选框,0否 1是)")
    @Excel(name = "是否对账")
    private Integer isReconciled;
    @Schema(description = "对账单归档情况(文本域)")
    @Excel(name = "对账单归档情况")
    private String statementArchivingStatus;
    @Schema(description = "是否结算(勾选框,0否 1是)")
    @Excel(name = "是否结算")
    private Integer isSettled;
    @Schema(description = "结算单归档情况(文本域)")
    @Excel(name = "结算单归档情况")
    private String settlementArchivingStatus;
    @Schema(description = "是否已开票(勾选框,0否 1是)")
    @Excel(name = "是否已开票")
    private Integer isInvoiced;
    @Schema(description = "项目ID")
    private Long projectId;
    @TableField(exist = false)
    @Schema(description = "项目名称")
    @Excel(name = "项目名称")
    private String projectName;
    @TableField(exist = false)
    @Schema(description = "开始发货日期")
    private String beginShippingDate;
    @TableField(exist = false)
    @Schema(description = "结束发货日期")
    private String endShippingDate;
}