12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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;
- }
- }
|