接口调整

This commit is contained in:
2023-08-22 10:04:29 +08:00
parent d023906df4
commit a38f6747f1
8 changed files with 14 additions and 110 deletions

View File

@@ -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;
/**
* 0false 1true 暂态消息模块
*/
private Integer eventInfo;
/**
* 0false 1true 稳态消息模块
*/
private Integer harmonicInfo;
/**
* 0false 1true 终端消息模块
*/
private Integer deviceInfo;
/**
* 0false 1true 系统消息模块
*/
private Integer systemInfo;
}