后续封装
This commit is contained in:
@@ -3,7 +3,6 @@ package com.czg.order.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.math.BigInteger;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
@@ -30,7 +29,7 @@ public class OrderInfoDTO implements Serializable {
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private BigInteger id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 订单编号
|
||||
|
||||
@@ -80,7 +80,7 @@ public class OrderInfoQueryDTO implements Serializable {
|
||||
/**
|
||||
* 是否回收站 0-否,1回收站 默认查未删除
|
||||
*/
|
||||
private Integer isDel = 0;
|
||||
private Integer isDel;
|
||||
|
||||
/**
|
||||
* 查询包含该商品的 所有订单
|
||||
|
||||
@@ -7,7 +7,6 @@ import com.mybatisflex.annotation.Table;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.math.BigInteger;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import java.io.Serial;
|
||||
@@ -34,7 +33,7 @@ public class OrderInfo implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id(keyType = KeyType.Auto)
|
||||
private BigInteger id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 订单编号
|
||||
|
||||
Reference in New Issue
Block a user