public static explicit operator AcexeService.Models.PageParam(AcexeWms.Lib.Core.PagingBase page)
{
return new AcexeService.Models.PageParam
{
IsGetWholeData = page.isExportExcel,
PageIndex = page.pageIndex,
PageSize = page.pageSize,
SortField = page.sortField,
SortOrder = page.sortOrder
};
}
var pageresult = (GetUserListDto)WebService.Get(new AcexeService.ServiceModel.Sys.GetUserList()
{
Page = (AcexeService.Models.PageParam)this,
SysUserModel = new AcexeService.Models.SYS_USER
{
ISDELETED = context.Request.Req("ISDELETED") == "true",
ISVALID = true
},
FuzzyUserNameUserAccount = context.Request.Req("FuzzyUserNameUserAccount")
});