package com.ruoyi.purchase.pojo; import com.baomidou.mybatisplus.annotation.*; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Getter; import lombok.Setter; import java.io.Serializable; import java.math.BigDecimal; import java.time.LocalDateTime; /** *
* *
* * @author 芯导软件(江苏)有限公司 * @since 2026-03-10 04:45:35 */ @Getter @Setter @TableName("purchase_return_order_products") @Schema(name = "PurchaseReturnOrderProducts对象", description = "") public class PurchaseReturnOrderProducts implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Long id; @Schema(description = "退货单id") private Long purchaseReturnOrderId; @Schema(description = "销售台账产品id") private Long salesLedgerProductId; @Schema(description = "退货数量") private BigDecimal returnQuantity; @Schema(description = "录入时间") @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @Schema(description = "更新时间") @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; @Schema(description = "创建用户") @TableField(fill = FieldFill.INSERT) private Integer createUser; @TableField(fill = FieldFill.INSERT) private Long deptId; @Schema(description = "关联入库单id") private Long stockInRecordId; }