Ejemplo n.º 1
0
 /// <summary>
 /// 保存系统用户分组数据
 /// </summary>
 /// <param name="entity">用户分组实体</param>
 public void SaveInfo(GI_Role entity)
 {
     if (!string.IsNullOrWhiteSpace(entity.RoleID) && entity.RoleID != "null")
     {
         entity.UpdateM("ROLEID");
     }
     else
     {
         entity.RoleID = CommonService.GetPrimaryId(new GI_SerialInfo()
         {
             Name = "GI_ROLE", ColumnName = "ROLEID", OrganID = entity.OrganID
         }) + "";
         entity.SaveModelM();
     }
 }