管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2024-01-08 33d81a2224ff1327f134374a80f7d9f681ba3883
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace JiangSu.Models
{
    public class Img
    {
        public Img() { }
 
        public long id { set; get; }
 
        public string name { set; get; }
 
        public string path { set; get; }
 
        public string json { set; get; }
 
        public double x { set; get; }
 
        public double y { set; get; }
 
        public double z { set; get; }
    }
}