public static string ChangeNewPassword(string NewPassword) { Result R = new Result(); R.ResultValue = true; R.ResultMessage = "success"; return(JSonUtility.GetSerializedJSonStr(R)); }
public static string GetCurrentUserInfo(string para) { //此处返回当前登录的用户信息。 Sys_User CurrentUser = new Sys_User(); CurrentUser.UserName = "******"; CurrentUser.Password = "******"; return(JSonUtility.GetSerializedJSonStr(CurrentUser)); }