| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- /**
- * AttRoleGroupBaseParam
- *
- * @author lune
- * @date 2019-2-19
- */
- public class AttRoleGroupBaseParam extends PageParam implements Serializable {
- private String guid;
- private String roleGroupName;
- private String note;
- public AttRoleGroupBaseParam() {
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getRoleGroupName() {
- return roleGroupName;
- }
- public void setRoleGroupName(String roleGroupName) {
- this.roleGroupName = roleGroupName;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- }
|