123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- namespace OASystem.Domain.ViewModels
- {
- public class ViewBase
- {
-
-
-
- public string ReceiveDt { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
-
-
-
- public string ReturnDt { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- }
- public class ListViewBase<T> : ViewBase
- {
-
-
-
- public int CurrPageIndex { get; set; }
-
-
-
- public int CurrPageSize { get; set; }
-
-
-
- public int DataCount { get; set; }
-
-
-
- public List<T> DataList { get; set; }
- }
- public class DataCount
- {
- public int Count { get; set; }
- }
- public class DataCountCost
- {
- public decimal CountCost { get; set; }
- }
-
-
-
- public class PageFunAuthViewBase
- {
-
-
-
-
- public int CheckAuth { get; set; } = 0;
-
-
-
-
- public int DeleteAuth { get; set; } = 0;
-
-
-
-
- public int EditAuth { get; set; } = 0;
-
-
-
-
- public int FilesDownloadAuth { get; set; } = 0;
-
-
-
-
- public int FilesUploadAuth { get; set; } = 0;
-
-
-
-
- public int AddAuth { get; set; } = 0;
-
-
-
-
- public int AuditAuth { get; set; } = 0;
- }
- public class PageDataViewBase
- {
- public dynamic Data { get; set; }
- public int Total { get; set; }
- }
- }
|