コード例 #1
0
ファイル: UserController.cs プロジェクト: sulin888/LsProject
        public JsonResult GetUserResume(string userCode)
        {
            string strwhere = string.Empty;

            if (!string.IsNullOrEmpty(userCode))
            {
                strwhere += " and usercode='" + RequestHelper.FilterParam(userCode) + "'";
            }
            var list = ISysUserService.GetUserResume(strwhere);

            return(new CustomerJsonResult(new ResponseResultDataList {
                code = ResponseHelper.ESUCCESSCODE, msg = "请求成功", data = list
            }));
        }