feat:新增系统配置模块(Entity/Mapper/DTO/Service/Controller)+ 登录配置公开接口
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user