|
|
@@ -1,5 +1,7 @@
|
|
|
package org.dromara.system.domain.vo;
|
|
|
|
|
|
+import org.dromara.common.sensitive.annotation.Sensitive;
|
|
|
+import org.dromara.common.sensitive.core.SensitiveStrategy;
|
|
|
import org.dromara.system.domain.GameReferee;
|
|
|
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
import cn.idev.excel.annotation.ExcelProperty;
|
|
|
@@ -10,7 +12,6 @@ import lombok.Data;
|
|
|
|
|
|
import java.io.Serial;
|
|
|
import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
@@ -61,6 +62,7 @@ public class GameRefereeVo implements Serializable {
|
|
|
* 密码
|
|
|
*/
|
|
|
@ExcelProperty(value = "密码")
|
|
|
+ @Sensitive(strategy = SensitiveStrategy.PASSWORD, perms = "system:gameReferee:showPassword")
|
|
|
private String password;
|
|
|
|
|
|
/**
|