ButtonEntity.cs 511 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.GlobalEntitys
  7. {
  8. public class ButtonEntity
  9. {
  10. public long id { get; set; }
  11. public string buttonName { get; set; }
  12. public int maxHour { get; set; }
  13. public int minHour { get; set; }
  14. public int orderNum { get; set; }
  15. public int state { get; set; }
  16. public string type { get; set; }
  17. }
  18. }