package cn.tworice.common.entity.code;

import cn.tworice.mybatis.po.BasicDO;
import lombok.Data;
import lombok.EqualsAndHashCode;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.alibaba.excel.annotation.ExcelProperty;
import java.io.Serializable;

@EqualsAndHashCode(callSuper = true)
@Data
@TableName("-tworice_table_name-")
public class -tworice_name- extends BasicDO implements Serializable {
    @TableId(type = IdType.AUTO)
    private Integer id;
}