using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DocumentManagement.Model { public class UserTempPurview { #region Model private int _id; private int _templateid; private int _roleid; /// /// Id /// public int Id { set { _id = value; } get { return _id; } } /// /// 模板Id /// public int TemplateId { set { _templateid = value; } get { return _templateid; } } /// /// 角色Id /// public int RoleId { set { _roleid = value; } get { return _roleid; } } #endregion Model } }