boxu.zheng
1 year ago
14 changed files with 1959 additions and 63 deletions
@ -1,11 +1,14 @@ |
|||||
using System.Collections.Generic; |
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq.Expressions; |
||||
using System.Threading; |
using System.Threading; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
|
||||
namespace Faster.Zheng.Winin.AppBase; |
namespace Faster.Zheng.Winin.AppBase; |
||||
|
|
||||
public interface IZbxBase<TEntity, TEntityDto, TPagedAndSortedResultRequestDto, TKey, TCreateInput, TUpdateInput> |
public interface IZbxBase<TEntity, TEntityDto, TPagedAndSortedResultRequestDto, TKey, TCreateInput, TUpdateInput> |
||||
{ |
{ |
||||
Task<List<TEntity>> GetPageListByFilterAsync(SfsRequestInputBase sfsRequestInputBase, |
Task<PagedResultDto<TEntityDto>> GetPageListByFilterAsync(SfsRequestInputBase sfsRequestInputBase, |
||||
bool includeDetails = false, CancellationToken cancellationToken = default); |
bool includeDetails = false, CancellationToken cancellationToken = default); |
||||
} |
} |
@ -1,38 +1,38 @@ |
|||||
{ |
{ |
||||
"culture": "ar", |
"culture": "ar", |
||||
"texts": { |
"texts": { |
||||
"Menu:Home": "الصفحة الرئيسية", |
"Menu:Home": "الصفحة الرئيسية", |
||||
"LongWelcomeMessage": "مرحبا بكم في التطبيق. هذا مشروع بدء تشغيل يعتمد على إطار عمل ABP. لمزيد من المعلومات ، يرجى زيارة abp.io.", |
"LongWelcomeMessage": "مرحبا بكم في التطبيق. هذا مشروع بدء تشغيل يعتمد على إطار عمل ABP. لمزيد من المعلومات ، يرجى زيارة abp.io.", |
||||
"Permission:TestSchool": "TestSchool", |
"Permission:TestSchool": "TestSchool", |
||||
"Permission:Create": "Create", |
"Permission:Create": "Create", |
||||
"Permission:Update": "Update", |
"Permission:Update": "Update", |
||||
"Permission:Delete": "Delete", |
"Permission:Delete": "Delete", |
||||
"Menu:TestSchool": "MenuTestSchool", |
"Menu:TestSchool": "MenuTestSchool", |
||||
"TestSchool": "TestSchool", |
"TestSchool": "TestSchool", |
||||
"TestSchoolSchoolName": "TestSchoolSchoolName", |
"TestSchoolSchoolName": "TestSchoolSchoolName", |
||||
"TestSchoolOrderType": "TestSchoolOrderType", |
"TestSchoolOrderType": "TestSchoolOrderType", |
||||
"TestSchoolDetails": "TestSchoolDetails", |
"TestSchoolDetails": "TestSchoolDetails", |
||||
"CreateTestSchool": "CreateTestSchool", |
"CreateTestSchool": "CreateTestSchool", |
||||
"EditTestSchool": "EditTestSchool", |
"EditTestSchool": "EditTestSchool", |
||||
"TestSchoolDeletionConfirmationMessage": "Are you sure to delete the testSchool {0}?", |
"TestSchoolDeletionConfirmationMessage": "Are you sure to delete the testSchool {0}?", |
||||
"SuccessfullyDeleted": "Successfully deleted", |
"SuccessfullyDeleted": "Successfully deleted", |
||||
"TableFilter": "TableFilter", |
"TableFilter": "TableFilter", |
||||
"Permission:TestStudentDetail": "TestStudentDetail", |
"Permission:TestStudentDetail": "TestStudentDetail", |
||||
"Menu:TestStudentDetail": "MenuTestStudentDetail", |
"Menu:TestStudentDetail": "MenuTestStudentDetail", |
||||
"TestStudentDetail": "TestStudentDetail", |
"TestStudentDetail": "TestStudentDetail", |
||||
"TestStudentDetailMasterId": "TestStudentDetailMasterId", |
"TestStudentDetailMasterId": "TestStudentDetailMasterId", |
||||
"TestStudentDetailStudentName": "TestStudentDetailStudentName", |
"TestStudentDetailStudentName": "TestStudentDetailStudentName", |
||||
"TestStudentDetailOrderType": "TestStudentDetailOrderType", |
"TestStudentDetailOrderType": "TestStudentDetailOrderType", |
||||
"CreateTestStudentDetail": "CreateTestStudentDetail", |
"CreateTestStudentDetail": "CreateTestStudentDetail", |
||||
"EditTestStudentDetail": "EditTestStudentDetail", |
"EditTestStudentDetail": "EditTestStudentDetail", |
||||
"TestStudentDetailDeletionConfirmationMessage": "Are you sure to delete the testStudentDetail {0}?", |
"TestStudentDetailDeletionConfirmationMessage": "Are you sure to delete the testStudentDetail {0}?", |
||||
"Permission:DemoCar": "DemoCar", |
"Permission:DemoCar": "DemoCar", |
||||
"Menu:DemoCar": "MenuDemoCar", |
"Menu:DemoCar": "MenuDemoCar", |
||||
"DemoCar": "DemoCar", |
"DemoCar": "DemoCar", |
||||
"DemoCarCarName": "DemoCarCarName", |
"DemoCarCarName": "DemoCarCarName", |
||||
"DemoCarCarColor": "DemoCarCarColor", |
"DemoCarCarColor": "DemoCarCarColor", |
||||
"CreateDemoCar": "CreateDemoCar", |
"CreateDemoCar": "CreateDemoCar", |
||||
"EditDemoCar": "EditDemoCar", |
"EditDemoCar": "EditDemoCar", |
||||
"DemoCarDeletionConfirmationMessage": "Are you sure to delete the demoCar {0}?" |
"DemoCarDeletionConfirmationMessage": "Are you sure to delete the demoCar {0}?" |
||||
} |
} |
||||
} |
} |
@ -1,8 +1,39 @@ |
|||||
{ |
{ |
||||
"culture": "zh-Hans", |
"culture": "zh-Hans", |
||||
"texts": { |
"texts": { |
||||
"Menu:Home": "首页", |
"Menu:Home": "首页", |
||||
"Welcome": "欢迎", |
"Welcome": "欢迎", |
||||
"LongWelcomeMessage": "欢迎来到该应用程序. 这是一个基于ABP框架的启动项目. 有关更多信息, 请访问 abp.io." |
"LongWelcomeMessage": "欢迎来到该应用程序. 这是一个基于ABP框架的启动项目. 有关更多信息, 请访问 abp.io.", |
||||
|
"Permission:TestSchool": "TestSchool", |
||||
|
"Permission:Create": "Create", |
||||
|
"Permission:Update": "Update", |
||||
|
"Permission:Delete": "Delete", |
||||
|
"Menu:TestSchool": "MenuTestSchool", |
||||
|
"TestSchool": "TestSchool", |
||||
|
"TestSchoolSchoolName": "学校名称", |
||||
|
"TestSchoolOrderType": "TestSchoolOrderType", |
||||
|
"TestSchoolDetails": "TestSchoolDetails", |
||||
|
"CreateTestSchool": "CreateTestSchool", |
||||
|
"EditTestSchool": "EditTestSchool", |
||||
|
"TestSchoolDeletionConfirmationMessage": "Are you sure to delete the testSchool {0}?", |
||||
|
"SuccessfullyDeleted": "Successfully deleted", |
||||
|
"TableFilter": "TableFilter", |
||||
|
"Permission:TestStudentDetail": "TestStudentDetail", |
||||
|
"Menu:TestStudentDetail": "MenuTestStudentDetail", |
||||
|
"TestStudentDetail": "TestStudentDetail", |
||||
|
"TestStudentDetailMasterId": "TestStudentDetailMasterId", |
||||
|
"TestStudentDetailStudentName": "TestStudentDetailStudentName", |
||||
|
"TestStudentDetailOrderType": "TestStudentDetailOrderType", |
||||
|
"CreateTestStudentDetail": "CreateTestStudentDetail", |
||||
|
"EditTestStudentDetail": "EditTestStudentDetail", |
||||
|
"TestStudentDetailDeletionConfirmationMessage": "Are you sure to delete the testStudentDetail {0}?", |
||||
|
"Permission:DemoCar": "DemoCar", |
||||
|
"Menu:DemoCar": "MenuDemoCar", |
||||
|
"DemoCar": "DemoCar", |
||||
|
"DemoCarCarName": "DemoCarCarName", |
||||
|
"DemoCarCarColor": "DemoCarCarColor", |
||||
|
"CreateDemoCar": "CreateDemoCar", |
||||
|
"EditDemoCar": "EditDemoCar", |
||||
|
"DemoCarDeletionConfirmationMessage": "Are you sure to delete the demoCar {0}?" |
||||
} |
} |
||||
} |
} |
File diff suppressed because it is too large
Loading…
Reference in new issue