PipeLine.cs 1016 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LeaRun.Application.Entity.PipeNetworkManage
  7. {
  8. public class PipeLine
  9. {
  10. public int PipeLineId { get; set; }
  11. public string PipeLineName { get; set; }
  12. public int? PipeLineNo { get; set; }
  13. public int? PipeMaterial { get; set; }
  14. public decimal? PipeCaliber { get; set; }
  15. public decimal? PipeThickness { get; set; }
  16. public int? PressureLevel { get; set; }
  17. public int? Pressure { get; set; }
  18. public DateTime? BuidTime { get; set; }
  19. public decimal? RealLength { get; set; }
  20. public int? UseState { get; set; }
  21. public string Coordinates { get; set; }
  22. public string Memo { get; set; }
  23. public int PipeAreaId { get; set; }
  24. public string PipeLineStyle { get; set; }
  25. public PipeLine()
  26. {
  27. PipeLineStyle = "rgb(46, 207, 3)-0-3";
  28. }
  29. }
  30. }