| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | */ |
| | | @TableName(value = "payment_shipping") |
| | | @Data |
| | | @ApiModel |
| | | @Schema |
| | | public class PaymentShipping { |
| | | |
| | | |
| | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "订单号") |
| | | @Schema(description = "订单号") |
| | | private String orderNo; |
| | | |
| | | @ApiModelProperty(value = "客户名称") |
| | | @Schema(description = "客户名称") |
| | | private String customer; |
| | | |
| | | @ApiModelProperty(value = "订单金额") |
| | | @Schema(description = "订单金额") |
| | | private String orderAmount; |
| | | |
| | | @ApiModelProperty(value = "已付款金额") |
| | | @Schema(description = "已付款金额") |
| | | private String paidAmount; |
| | | |
| | | @ApiModelProperty(value = "付款方式") |
| | | @Schema(description = "付款方式") |
| | | private String paymentMethod; |
| | | |
| | | @ApiModelProperty(value = "付款状态") |
| | | @Schema(description = "付款状态") |
| | | private String paymentStatus; |
| | | |
| | | @ApiModelProperty(value = "发货状态") |
| | | @Schema(description = "发货状态") |
| | | private String shippingStatus; |
| | | |
| | | @ApiModelProperty(value = "发货日期") |
| | | @Schema(description = "发货日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date shippingDate; |
| | | |
| | | @ApiModelProperty(value = "物流单号") |
| | | @Schema(description = "物流单号") |
| | | private String trackingNo; |
| | | |
| | | @ApiModelProperty(value = "备注") |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty(value = "创建用户") |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @ApiModelProperty(value = "修改时间") |
| | | @Schema(description = "修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @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; |
| | | |