12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LeaRun.Application.Entity.PipeNetworkManage
- {
- public class PipeLine
- {
- public int PipeLineId { get; set; }
- public string PipeLineName { get; set; }
- public int? PipeLineNo { get; set; }
- public int? PipeMaterial { get; set; }
- public decimal? PipeCaliber { get; set; }
- public decimal? PipeThickness { get; set; }
- public int? PressureLevel { get; set; }
- public int? Pressure { get; set; }
- public DateTime? BuidTime { get; set; }
- public decimal? RealLength { get; set; }
- public int? UseState { get; set; }
- public string Coordinates { get; set; }
- public string Memo { get; set; }
- public int PipeAreaId { get; set; }
- public string PipeLineStyle { get; set; }
- public PipeLine()
- {
- PipeLineStyle = "rgb(46, 207, 3)-0-3";
- }
- }
- }
|