|
|
@ -222,6 +222,43 @@ namespace EasyBL.WEBAPP.SYS |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
public HttpResponseMessage GetExhibitionStatusList(string sLanguageID, string sAccount) |
|
|
|
{ |
|
|
|
|
|
|
|
SuccessResponseMessage srm = null; |
|
|
|
string sError = null; |
|
|
|
|
|
|
|
try |
|
|
|
{ |
|
|
|
do |
|
|
|
{ |
|
|
|
|
|
|
|
FavoriteMaintain_QryService fm_qry = new FavoriteMaintain_QryService(); |
|
|
|
var rsResult = fm_qry.QueryExhibitionStatusList(sLanguageID, sAccount).Values.ToList(); |
|
|
|
|
|
|
|
|
|
|
|
//返回token信息
|
|
|
|
srm = new SuccessResponseMessage(null, null); |
|
|
|
|
|
|
|
srm.DATA.Add(BLWording.REL, rsResult); |
|
|
|
|
|
|
|
} while (false); |
|
|
|
} |
|
|
|
catch (Exception ex) |
|
|
|
{ |
|
|
|
sError = Util.GetLastExceptionMsg(ex); |
|
|
|
srm = new SuccessResponseMessage(null, null) |
|
|
|
{ |
|
|
|
STATUSCODE = (int)StatusCodeEnum.Error, |
|
|
|
MSG = StatusCodeEnum.Error.GetEnumText() |
|
|
|
}; |
|
|
|
srm.DATA.Add(BLWording.REL, ""); |
|
|
|
} |
|
|
|
|
|
|
|
return HttpResponseExtension.ToJson(JsonConvert.SerializeObject(srm)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
private List<FavoriteDTO> FavoriteEntityToDTO(Object Data) |
|
|
|
{ |
|
|
|
|
|
|
|