管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2024-09-02 ee22df6c94793777fe5b28f2886ebeb2ba2c4256
SimuTools/Domain/Water.cs
@@ -1,4 +1,5 @@
using System;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -8,9 +9,16 @@
{
    public class Water
    {
        private List<long> data { set; get; }
        [JsonIgnore]
        public List<string> files { set; get; }
        public Water() { }
        public List<long> data { set; get; }
        public Water()
        {
            files = new List<string>();
            data = new List<long>();
        }
        public Water(List<long> data)
        {