接口调整
This commit is contained in:
@@ -1,51 +0,0 @@
|
||||
package com.njcn.user.pojo.po.app;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import java.io.Serializable;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* APP用户消息配置表
|
||||
* </p>
|
||||
*
|
||||
* @author xuyang
|
||||
* @since 2023-06-08
|
||||
*/
|
||||
@Data
|
||||
@TableName("app_info_set")
|
||||
public class AppInfoSet {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private String userIndex;
|
||||
|
||||
/**
|
||||
* 0:false ;1:true 暂态消息模块
|
||||
*/
|
||||
private Integer eventInfo;
|
||||
|
||||
/**
|
||||
* 0:false ;1:true 稳态消息模块
|
||||
*/
|
||||
private Integer harmonicInfo;
|
||||
|
||||
/**
|
||||
* 0:false ;1:true 终端消息模块
|
||||
*/
|
||||
private Integer deviceInfo;
|
||||
|
||||
/**
|
||||
* 0:false ;1:true 系统消息模块
|
||||
*/
|
||||
private Integer systemInfo;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user