12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MeterVision.db
- {
- //比较表的实体
- public class TComp
- {
- public string CompId { get; set; }
- public string CreateTime { get; set; }
- public string StandId { get; set; }
- public string NPatchId { get; set; }
- public string OPatchId { get; set; }
- public TComp()
- {
- CompId = string.Empty;
- CreateTime = string.Empty;
- StandId = string.Empty;
- NPatchId = string.Empty;
- OPatchId = string.Empty;
- }
- //------------------------------------------
- }
- }
|