Skip to content

Commit

Permalink
Modify serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Jzow committed Aug 13, 2024
1 parent 0d556ff commit 8f7deb8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import lombok.experimental.Accessors;

import java.io.Serial;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;

Expand All @@ -33,7 +34,7 @@
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("warehouse_receipt_sub")
public class WarehouseReceiptSub {
public class WarehouseReceiptSub implements Serializable {

@Serial
private static final long serialVersionUID = 89161616161329L;
Expand Down

0 comments on commit 8f7deb8

Please sign in to comment.