| | |
| | | import java.time.LocalDateTime; |
| | | |
| | | 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.Getter; |
| | | import lombok.Setter; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | @Getter |
| | | @Setter |
| | | @TableName("sales_refund_amount_order") |
| | | @ApiModel(value = "SalesRefundAmountOrder对象", description = "销售管理--退款单") |
| | | @Schema(name = "SalesRefundAmountOrder对象", description = "销售管理--退款单") |
| | | public class SalesRefundAmountOrder implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("退货单号id") |
| | | @Schema(description = "退货单号id") |
| | | private Long returnManagementId; |
| | | |
| | | @ApiModelProperty("状态") |
| | | @Schema(description = "状态") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("应退款金额") |
| | | @Schema(description = "应退款金额") |
| | | private BigDecimal refundAmount; |
| | | |
| | | @ApiModelProperty("已退款金额") |
| | | @Schema(description = "已退款金额") |
| | | private BigDecimal refundedAmount; |
| | | |
| | | @ApiModelProperty("未退款金额") |
| | | @Schema(description = "未退款金额") |
| | | private BigDecimal notRefundedAmount; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("更新时间") |
| | | @Schema(description = "更新时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty("创建人id") |
| | | @Schema(description = "创建人id") |
| | | private Long createUserId; |
| | | |
| | | @ApiModelProperty("更新人id") |
| | | @Schema(description = "更新人id") |
| | | private Long updateUserId; |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | } |