12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MeterVision.db
- {
- public class VComp
- {
- public string CompId { get; set; }
- public string CreateTime { get; set; }
- public string StandId { get; set; }
- public string StandName { get; set; }
- public int StandCount { get; set; }
- public string NPatchId { get; set; }
- public string NPatchName { get; set; }
- public string NPatchTime { get; set; }
- public int NPatchDetailCount { get; set; }
- public int NPatchEqualCount { get; set; }
- public string OPatchId { get; set; }
- public string OPatchName { get; set; }
- public string OPatchTime { get; set; }
- public int OPatchDetailCount { get; set; }
- public int OPatchEqualCount { get; set; }
- public VComp()
- {
- }
- }
- }
|