using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ivf_tl_Entity.GlobalEntitys { public class ButtonEntity { public long id { get; set; } public string buttonName { get; set; } public int maxHour { get; set; } public int minHour { get; set; } public int orderNum { get; set; } public int state { get; set; } public string type { get; set; } } }