28 lines
514 B
Java
28 lines
514 B
Java
package com.peanut.modules.common.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@TableName("taihu_welfare")
|
|
public class TaihuWelfareEntity {
|
|
|
|
@TableId
|
|
private Integer id;
|
|
|
|
private String title;
|
|
|
|
private Integer type;
|
|
|
|
private String url;
|
|
|
|
private String content;
|
|
|
|
private Integer sort;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
}
|