java110
2021-01-26 e94845798c7a99fddc364c00a80e76294cf83aa8
java110-bean/src/main/java/com/java110/dto/basePrivilege/BasePrivilegeDto.java
@@ -1,13 +1,34 @@
/*
 * Copyright 2017-2020 吴学文 and java110 team.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.java110.dto.basePrivilege;
import com.java110.dto.PageDto;
import java.io.Serializable;
/**
 * <p>基础权限 对象</p>
 * <p>
 * add by wuxw 2020-12-13
 */
public class BasePrivilegeDto extends PageDto implements Serializable {
    private String userId;
    private String pId;
    private String storeId;
    private String name;
    private String resource;
    private String domain;
@@ -96,4 +117,12 @@
    public void setmId(String mId) {
        this.mId = mId;
    }
    public String getStoreId() {
        return storeId;
    }
    public void setStoreId(String storeId) {
        this.storeId = storeId;
    }
}