123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity
- {
- public class PageModel: BaseResponseModel
- {
- private int _totalNum;
- public PageModel()
- {
- }
-
-
-
- public int totalNum
- {
- get { return _totalNum; }
- set { _totalNum = value; }
- }
-
-
-
- public int currentPage { get; set; }
-
-
-
- public int pageSize{ get; set; }
-
- }
- }
|