修正错误提交

This commit is contained in:
click33
2021-07-17 23:55:21 +08:00
parent 971c2860f0
commit ee80633582
14 changed files with 0 additions and 2117 deletions

View File

@@ -1,73 +0,0 @@
//package cn.dev33.satoken.oauth2.model;
//
///**
// * 权限Model
// * @author kong
// *
// */
//public class ScopeModel {
//
// /**
// * 权限名称
// */
// private String name;
//
// /**
// * 详细介绍
// */
// private String introduce;
//
//
// /**
// * 构造一个
// */
// public ScopeModel() {
// super();
// }
// /**
// * 构造一个
// * @param name 权限名称
// * @param introduce 权限详细介绍
// */
// public ScopeModel(String name, String introduce) {
// super();
// this.name = name;
// this.introduce = introduce;
// }
//
// /**
// * @return name
// */
// public String getName() {
// return name;
// }
//
// /**
// * @param name 要设置的 name
// */
// public void setName(String name) {
// this.name = name;
// }
//
// /**
// * @return introduce
// */
// public String getIntroduce() {
// return introduce;
// }
//
// /**
// * @param introduce 要设置的 introduce
// */
// public void setIntroduce(String introduce) {
// this.introduce = introduce;
// }
//
//
//
//
//
//
//
//
//}