ExchangeMachines.cs 381 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class ExchangeMachines
  6. {
  7. public int SnId { get; set; }
  8. public string SnNo { get; set; }
  9. public int MachineType { get; set; }
  10. public int RecycDays { get; set; }
  11. public DateTime? EndDate { get; set; }
  12. public string ProductType { get; set; }
  13. }
  14. }