| | |
| | | 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; |
| | | |
| | |
| | | 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; |
| | | } |