123456789101112131415161718192021222324252627282930 |
- using MeterVision.Patch;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MeterVision.model
- {
- public class CompFindModel
- {
- public CompFindType CompFindType { get; set; }
- public int PageNumber { get; set; }
- public int PageSize { get; set; }
- public string CompId { get; set; }
- public CompFindModel(int pageNumber,int pageSize,string compId,CompFindType compFindType)
- {
- CompFindType = compFindType;
- PageNumber = PageNumber;
- PageSize = pageSize;
- CompId = compId;
- }
- //---------------------------------------
- }
- }
|