package com.ruoyi.sales.pojo; import com.baomidou.mybatisplus.annotation.*; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.time.LocalDateTime; import java.util.Date; import java.util.List; /** * @author :yys * @date : 2025/9/15 13:56 */ @TableName(value = "payment_shipping") @Data @Schema public class PaymentShipping { private static final long serialVersionUID = 1L; /** * 序号 */ @TableId(type = IdType.AUTO) private Long id; @Schema(description = "订单号") private String orderNo; @Schema(description = "客户名称") private String customer; @Schema(description = "订单金额") private String orderAmount; @Schema(description = "已付款金额") private String paidAmount; @Schema(description = "付款方式") private String paymentMethod; @Schema(description = "付款状态") private String paymentStatus; @Schema(description = "发货状态") private String shippingStatus; @Schema(description = "发货日期") @JsonFormat(pattern = "yyyy-MM-dd") @DateTimeFormat(pattern = "yyyy-MM-dd") private Date shippingDate; @Schema(description = "物流单号") private String trackingNo; @Schema(description = "备注") private String remark; @Schema(description = "创建时间") @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @Schema(description = "创建用户") @TableField(fill = FieldFill.INSERT) private Integer createUser; @Schema(description = "修改时间") @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; @Schema(description = "修改用户") @TableField(fill = FieldFill.INSERT_UPDATE) private Integer updateUser; @Schema(description = "租户ID") @TableField(fill = FieldFill.INSERT) private Long tenantId; @TableField(fill = FieldFill.INSERT) private Long deptId; }