using System; namespace Maticsoft.Model { /// /// nr_z_yhzh:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class nr_z_yhzh { public nr_z_yhzh() {} #region Model private int _id; private string _zhanghao; private string _mima; private int _juese; private int _yangshi; /// /// 客户编号 /// public int id { set{ _id=value;} get{return _id;} } /// /// 用户名 /// public string zhanghao { set{ _zhanghao=value;} get{return _zhanghao;} } /// /// 密码 /// public string mima { set{ _mima=value;} get{return _mima;} } /// /// 用户角色 /// public int juese { set{ _juese=value;} get{return _juese;} } /// /// 用户样式 /// public int yangshi { set{ _yangshi=value;} get{return _yangshi;} } #endregion Model } }