You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
Java
42 lines
1.0 KiB
Java
package com.glxp.api.entity.system;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@TableName(value = "sys_remind_set")
|
|
public class SysRemindSetEntity {
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Integer id;
|
|
|
|
@TableField(value = "`key`")
|
|
private String key;
|
|
|
|
@TableField(value = "`name`")
|
|
private String name;
|
|
|
|
@TableField(value = "`value`")
|
|
private Integer value;
|
|
|
|
@TableField(value = "`type`")
|
|
private Integer type;
|
|
|
|
@TableField(value = "remark")
|
|
private String remark;
|
|
|
|
public static final String COL_ID = "id";
|
|
|
|
public static final String COL_KEY = "key";
|
|
|
|
public static final String COL_NAME = "name";
|
|
|
|
public static final String COL_VALUE = "value";
|
|
|
|
public static final String COL_TYPE = "type";
|
|
|
|
public static final String COL_REMARK = "remark";
|
|
}
|