package com.newfiber.api.pc.model.entity; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import com.baomidou.mybatisplus.enums.IdType; import lombok.Data; import java.io.Serializable; /** * 流量站分类站点 * @ClassName OutletSiteClassify * @Description TODO * @Author 张鸿志 * @Date 2021年4月23日13:11:08 13:11 * Version 1.0 **/ @Data @TableName("outlet_site_classify") public class OutletSiteClassify implements Serializable { @TableId(value = "id",type = IdType.AUTO) private Integer id; /** 站点编号 */ @TableField("site_no") private String siteNO; /** 子分类 */ @TableField("type") private Integer type; /** 站点类型 */ @TableField("site_type") private Integer siteType; }