using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace NozzleLockConfiguration
{
    public enum NozzleLockStatus { Unknown = 0, Open = 1, Clsoed = 2};

    // table nozzle_lock
    public class NozzleLockModel
    {
        public int jihao { get; set; }
        public NozzleLockStatus lock_status { get; set; }
        public DateTime last_change_time { get; set; }
    }
}