aaa
doum
2026-06-04 08e9a67dd679f311e79a27b04cd0c53a30b4bccf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.doumee.dao.business.model;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel("预选订单明细")
@TableName("`preselect_order_item`")
public class PreselectOrderItem {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    private Integer orderId;
    private Integer sortNum;
    private Integer categoryId;
    private String categoryName;
    private Integer subCategoryId;
    private String subCategoryName;
    private Integer goodsId;
    private String goodsName;
    private BigDecimal zdPrice;
    private BigDecimal price;
    private Integer isdeleted;
}