hutongqing
2024-08-26 569e91c63636345391f741df049c9374a141a434
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; }
    }
}