Merge remote-tracking branch 'origin/main'

This commit is contained in:
weiweiw 2024-07-04 09:48:31 +08:00
commit 5cdcc06fe4
2 changed files with 2 additions and 65 deletions

View File

@ -1,11 +1,8 @@
package com.bonus.auth.form;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* 用户登录对象
*
*
* @author bonus
*/
public class LoginBody
@ -20,15 +17,6 @@ public class LoginBody
*/
private String password;
// 无参构造函数
public LoginBody() {
}
@JsonCreator
public LoginBody(@JsonProperty("username") String username, @JsonProperty("password") String password) {
this.username = username;
this.password = password;
}
public String getUsername()
{
return username;
@ -48,4 +36,4 @@ public class LoginBody
{
this.password = password;
}
}
}

View File

@ -1,51 +0,0 @@
package com.bonus.common.log.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.bonus.common.log.enums.BusinessType;
import com.bonus.common.log.enums.OperatorType;
/**
* 自定义操作日志记录注解
*
* @author bonus
*
*/
@Target({ ElementType.PARAMETER, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Log
{
/**
* 模块
*/
public String title() default "";
/**
* 功能
*/
public BusinessType businessType() default BusinessType.OTHER;
/**
* 操作人类别
*/
public OperatorType operatorType() default OperatorType.MANAGE;
/**
* 是否保存请求的参数
*/
public boolean isSaveRequestData() default true;
/**
* 是否保存响应的参数
*/
public boolean isSaveResponseData() default true;
/**
* 排除指定的请求参数
*/
public String[] excludeParamNames() default {};
}