namespace SHJX.Service.Model.CRUDModules { [Table("statemachine")] public class StateMachine { [Key] public int SerialKey { get; set; } public string Name { get; set; } public int Status { get; set; } } }