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;
|
}
|