12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MeterVision.db
- {
- public class TPatch
- {
- public string PatchId { get; set; }
- public string CreateTime { get; set; }
- public string PatchName { get; set; }
- public string StandId { get; set; }
- public string StandName { get; set; }
-
- public TPatch()
- {
- PatchId = string.Empty;
- CreateTime = string.Empty;
- PatchName = string.Empty;
- StandId = string.Empty;
- StandName = string.Empty;
- }
- }
- }
|