You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package com.spring.modules.base.entity;
public class Role { /** * */ private Integer id;
/** * 工厂编码 */ private String site;
/** * BU编码 */ private String roleNo;
/** * BU名称 */ private String roleDesc;
/** * 备注 */ private String remark;
/** * 是否在用 */ private String active;
public Integer getId() { return id; }
public void setId(Integer id) { this.id = id; }
public String getSite() { return site; }
public void setSite(String site) { this.site = site; }
public String getRoleNo() { return roleNo; }
public void setRoleNo(String roleNo) { this.roleNo = roleNo; }
public String getRoleDesc() { return roleDesc; }
public void setRoleDesc(String roleDesc) { this.roleDesc = roleDesc; }
public String getRemark() { return remark; }
public void setRemark(String remark) { this.remark = remark; }
public String getActive() { return active; }
public void setActive(String active) { this.active = active; }}
|