12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TDspinfo
- {
- public string DspNo { get; set; }
- public string DspType { get; set; }
- public string SupplierName { get; set; }
- public byte? Protocol { get; set; }
- public string Address { get; set; }
- public int? LimitDate { get; set; }
- public string State { get; set; }
- public string FactoryNo { get; set; }
- public DateTime? FactoryDate { get; set; }
- public int? Nozzcount { get; set; }
- }
- }
|