1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.qs.mp.channel.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- /**
- * @describe 经销商购物车实体类
- * @auther quanshu
- * @create 2022-03-02 12:22:24
- */
- @TableName("mp_channel_cart")
- @Data
- public class ChannelCart implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @TableId(value = "cart_id" , type = IdType.AUTO)
- private Long cartId;
- /**
- * 渠道ID
- */
- @TableField("channel_id")
- private Long channelId;
- /**
- * 盲票组ID
- */
- @TableField("box_id")
- private Integer boxId;
- /**
- * 订购包数
- */
- @TableField("order_num")
- private Integer orderNum;
- /**
- * 创建时间
- */
- @TableField("created_time")
- private Date createdTime;
- /**
- * 更新时间
- */
- @TableField("updated_time")
- private Date updatedTime;
- }
|