AlertInfoEntity.java 325 Bytes
Newer Older
xd's avatar
xd committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.tanpu.community.dao.entity;

import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
import lombok.experimental.SuperBuilder;

/**
 * created by xd on 2021/6/5
 */

@Data
@SuperBuilder
@TableName(value = "alert_info")
public class AlertInfoEntity extends BaseEntity {
    private String content;
}