第一次提交至Git

This commit is contained in:
2024-03-11 16:32:52 +08:00
commit 3f6c4d62b9
2865 changed files with 2172317 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
Imports FlexCell
Namespace UTSModule.Project
Public Class ProjectStationPlan
Sub New()
TestPlanLocked = False
Version = New Version(1, 0)
StationPlanGrid = New Grid()
Project.StationPlanGrid.InitGrid(StationPlanGrid)
End Sub
Sub New(packet As ProjectStationPacket)
TestPlanLocked = False
Version = New Version(1, 0)
ParentPacket = packet
StationPlanGrid = New Grid()
Project.StationPlanGrid.InitGrid(StationPlanGrid)
End Sub
''' <summary>测试流程是否已锁定</summary>
Public Property TestPlanLocked As Boolean
'''' <summary>测试流程版本</summary>
'Public Property Version As Version
''' <summary>测试流程表格</summary>
Public Property StationPlanGrid() As Grid
''' <summary>测试流程所关联的项目站包信息</summary>
Public Property ParentPacket() As ProjectStationPacket
End Class
End Namespace