package com.java110.dto.privilegeGroup;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 角色数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class PrivilegeGroupDto extends PageDto implements Serializable {
|
|
public final static String ROLE_TYPE_USER = "USER";
|
|
private String pgId;
|
private String domain;
|
private String name;
|
private String description;
|
private String storeId;
|
private String roleType;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
|
public String getPgId() {
|
return pgId;
|
}
|
|
public void setPgId(String pgId) {
|
this.pgId = pgId;
|
}
|
|
public String getDomain() {
|
return domain;
|
}
|
|
public void setDomain(String domain) {
|
this.domain = domain;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(String storeId) {
|
this.storeId = storeId;
|
}
|
|
public String getRoleType() {
|
return roleType;
|
}
|
|
public void setRoleType(String roleType) {
|
this.roleType = roleType;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
}
|