仪表盘
版本库
文件存储
活动
搜索
登录
IStation
/
shys/Schedule.Ch.V1.0
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
调度修改
Shuxia Ning
2024-11-06
adf8dc1c7cae1b12f486dcdb3d7daf4a5a59ec52
[IStation/shys/Schedule.Ch.V1.0.git]
/
01-api
/
Dto
/
IStation.Dto
/
03-web
/
01-schedule-station
/
01-model
/
01-inp
/
Tank.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace IStation.Dto.Inp
{
/// <summary>
/// ÐîË®³Ø
/// </summary>
public class Tank : Node
{
public Tank()
{
}
public Tank(Tank rhs)
{
this.Id = rhs.Id;
this.Coordinate = rhs.Coordinate;
}
}
}