/* * 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; /** *
基础权限 对象
** 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; private String description; private String statusCd = "0"; private String mId; private String stName; private String createTime; public String getPId() { return pId; } public void setPId(String pId) { this.pId = pId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDomain() { return domain; } public void setDomain(String domain) { this.domain = domain; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getpId() { return pId; } public void setpId(String pId) { this.pId = pId; } public String getStatusCd() { return statusCd; } public void setStatusCd(String statusCd) { this.statusCd = statusCd; } public String getCreateTime() { return createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getResource() { return resource; } public void setResource(String resource) { this.resource = resource; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getmId() { return mId; } public void setmId(String mId) { this.mId = mId; } public String getStoreId() { return storeId; } public void setStoreId(String storeId) { this.storeId = storeId; } public String getStName() { return stName; } public void setStName(String stName) { this.stName = stName; } }