NozzleLockModel.cs 452 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NozzleLockConfiguration
  7. {
  8. public enum NozzleLockStatus { Unknown = 0, Open = 1, Clsoed = 2};
  9. // table nozzle_lock
  10. public class NozzleLockModel
  11. {
  12. public int jihao { get; set; }
  13. public NozzleLockStatus lock_status { get; set; }
  14. public DateTime last_change_time { get; set; }
  15. }
  16. }