国家区域
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.peanut.modules.book.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
@TableName("/base_area")
|
||||
public class BaseAreaEntity implements Serializable {
|
||||
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Integer areaId;
|
||||
|
||||
private String title;
|
||||
|
||||
private String code;
|
||||
|
||||
@TableLogic
|
||||
private int delFlag;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user