1
hutongqing
2024-08-30 2cc4dfef234b47bef364edf798b5051a25f33217
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.BasicInfo
{
    public class RoutersAddDTO
    {
        public string PositionCode { get; set; }
 
        public string ChildPositionCode { get; set; }
 
        public string SCRow { get; set; }
 
        public string SCColumn {  get; set; }
 
        public string SCLayer { get; set; }
    }
}