feat:新增系统配置模块(Entity/Mapper/DTO/Service/Controller)+ 登录配置公开接口

This commit is contained in:
2026-06-27 10:25:17 +08:00
parent ed741ac8bf
commit 9131203d1c
11 changed files with 433 additions and 0 deletions
@@ -0,0 +1,24 @@
package com.emotion.dto.response;
import lombok.Data;
/**
* 登录方式配置响应
* 返回给小程序,告知当前启用的登录方式
*
* @author system
* @date 2026-06-27
*/
@Data
public class LoginConfigResponse {
/**
* 是否启用微信登录
*/
private Boolean wechatLoginEnabled;
/**
* 是否启用短信登录
*/
private Boolean smsLoginEnabled;
}