| | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | |
| | | @Getter |
| | | @Setter |
| | | @TableName("purchase_return_order_products") |
| | | @ApiModel(value = "PurchaseReturnOrderProducts对象", description = "") |
| | | @Schema(name = "PurchaseReturnOrderProducts对象", description = "") |
| | | public class PurchaseReturnOrderProducts implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("退货单id") |
| | | @Schema(description = "退货单id") |
| | | private Long purchaseReturnOrderId; |
| | | |
| | | @ApiModelProperty("采购产品id") |
| | | @Schema(description = "采购产品id") |
| | | private Long salesLedgerProductId; |
| | | |
| | | @ApiModelProperty("退货数量") |
| | | @Schema(description = "退货数量") |
| | | private BigDecimal returnQuantity; |
| | | |
| | | @ApiModelProperty("录入时间") |
| | | @Schema(description = "录入时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("更新时间") |
| | | @Schema(description = "更新时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | @ApiModelProperty(value = "创建用户") |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |