package com.panzhihua.service_community.model.dos;
|
|
import java.io.Serializable;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import lombok.Data;
|
|
/**
|
* @description: 便民服务分类
|
* @author: Null
|
* @date: 2021/3/11 10:22
|
*/
|
@Data
|
@TableName(value = "com_cvt_category")
|
public class ComCvtCategoryDO implements Serializable {
|
private static final long serialVersionUID = 6973090444078148152L;
|
|
/**
|
* 分类id 自增
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 分类名称
|
*/
|
private String name;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 权重
|
*/
|
private Integer weight;
|
|
/**
|
* 创建人
|
*/
|
private String createBy;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private String createAt;
|
}
|