DeviceChannelEntity.java 700 Bytes
Newer Older
zzrdark committed
1 2 3
package com.mx.cneeds.server.entity;

import com.baomidou.mybatisplus.annotation.TableId;
zzrdark committed
4
import com.baomidou.mybatisplus.annotation.TableName;
zzrdark committed
5 6 7 8 9 10 11 12 13 14 15 16
import lombok.Data;

import java.io.Serializable;
import java.util.Date;

/**
 * @ClassName DeviceChannelEntity
 * @Author zzrdark
 * @Date 2020-05-09 15:28
 * @Description TODO
 **/
@Data
zzrdark committed
17
@TableName("device_channel")
18
public class DeviceChannelEntity implements Serializable ,Cloneable {
zzrdark committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

    /**
     * 渠道号Id
     */
    @TableId
    private Long channelId;

    /**
     * 渠道号
     */
    private String channelNum;

    /**
     * 品牌
     */
    private String brand;

    /**
     * 更新时间
     */
    private Date updateTime;

}