통합본 작성

This commit is contained in:
ykh
2025-09-28 22:13:37 +09:00
parent 27704968e6
commit 2bf95ec258
12 changed files with 556 additions and 437 deletions

View File

@@ -7298,7 +7298,7 @@ Partial Public Class DS
Me.column펌프정격전력.DefaultValue = CType("0",String)
Me.column배관망유형.DefaultValue = CType("0",String)
Me.column펌프교정계수.DefaultValue = CType("0",String)
Me.column펌프제어유형.DefaultValue = CType("0",String)
Me.column펌프제어유형.DefaultValue = CType("(없음)",String)
Me.column펌프제어유형.MaxLength = 50
Me.column펌프동력.DefaultValue = CType("0",String)
Me.column펌프동력.MaxLength = 50
@@ -7517,6 +7517,10 @@ Partial Public Class DS
Private column대수 As Global.System.Data.DataColumn
Private column냉수펌프제어 As Global.System.Data.DataColumn
Private column냉각수펌프제어 As Global.System.Data.DataColumn
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public Sub New()
@@ -7736,6 +7740,22 @@ Partial Public Class DS
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public ReadOnly Property 냉수펌프제어Column() As Global.System.Data.DataColumn
Get
Return Me.column냉수펌프제어
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public ReadOnly Property 냉각수펌프제어Column() As Global.System.Data.DataColumn
Get
Return Me.column냉각수펌프제어
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
Global.System.ComponentModel.Browsable(false)> _
@@ -7796,9 +7816,11 @@ Partial Public Class DS
ByVal 냉수펌프동력 As String, _
ByVal 냉각수펌프동력 As String, _
ByVal 사용연료 As String, _
ByVal 대수 As String) As tbl_nangbangkikiRow
ByVal 대수 As String, _
ByVal 냉수펌프제어 As String, _
ByVal 냉각수펌프제어 As String) As tbl_nangbangkikiRow
Dim rowtbl_nangbangkikiRow As tbl_nangbangkikiRow = CType(Me.NewRow,tbl_nangbangkikiRow)
Dim columnValuesArray() As Object = New Object() {code, 설명, 냉동기방식, 냉동기용량, 열성능비, 냉동기종류, 냉동기압축방식, 압축기제어방식, 냉동기설비시스템, 제어방식, 온수열생산기기, 증발식건식냉각기, 증발식냉각기, 보조방음기유무, 냉각탑입구온도, 연결된시스템, 열생산연결방식, 개별기기적용, 헤더적용, 냉수펌프동력, 냉각수펌프동력, 사용연료, 대수}
Dim columnValuesArray() As Object = New Object() {code, 설명, 냉동기방식, 냉동기용량, 열성능비, 냉동기종류, 냉동기압축방식, 압축기제어방식, 냉동기설비시스템, 제어방식, 온수열생산기기, 증발식건식냉각기, 증발식냉각기, 보조방음기유무, 냉각탑입구온도, 연결된시스템, 열생산연결방식, 개별기기적용, 헤더적용, 냉수펌프동력, 냉각수펌프동력, 사용연료, 대수, 냉수펌프제어, 냉각수펌프제어}
rowtbl_nangbangkikiRow.ItemArray = columnValuesArray
Me.Rows.Add(rowtbl_nangbangkikiRow)
Return rowtbl_nangbangkikiRow
@@ -7850,6 +7872,8 @@ Partial Public Class DS
Me.column냉각수펌프동력 = MyBase.Columns("냉각수펌프동력")
Me.column사용연료 = MyBase.Columns("사용연료")
Me.column대수 = MyBase.Columns("대수")
Me.column냉수펌프제어 = MyBase.Columns("냉수펌프제어")
Me.column냉각수펌프제어 = MyBase.Columns("냉각수펌프제어")
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
@@ -7901,6 +7925,10 @@ Partial Public Class DS
MyBase.Columns.Add(Me.column사용연료)
Me.column대수 = New Global.System.Data.DataColumn("대수", GetType(String), Nothing, Global.System.Data.MappingType.Element)
MyBase.Columns.Add(Me.column대수)
Me.column냉수펌프제어 = New Global.System.Data.DataColumn("냉수펌프제어", GetType(String), Nothing, Global.System.Data.MappingType.Element)
MyBase.Columns.Add(Me.column냉수펌프제어)
Me.column냉각수펌프제어 = New Global.System.Data.DataColumn("냉각수펌프제어", GetType(String), Nothing, Global.System.Data.MappingType.Element)
MyBase.Columns.Add(Me.column냉각수펌프제어)
Me.Constraints.Add(New Global.System.Data.UniqueConstraint("Constraint1", New Global.System.Data.DataColumn() {Me.columncode}, true))
Me.columncode.AllowDBNull = false
Me.columncode.Unique = true
@@ -29114,7 +29142,7 @@ Partial Public Class DS
Public Property 펌프제어유형() As String
Get
If Me.Is펌프제어유형Null Then
Return "0"
Return Nothing
Else
Return CType(Me(Me.tabletbl_nanbangkiki.펌프제어유형Column),String)
End If
@@ -30456,6 +30484,36 @@ Partial Public Class DS
End Set
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public Property 냉수펌프제어() As String
Get
If Me.Is냉수펌프제어Null Then
Return String.Empty
Else
Return CType(Me(Me.tabletbl_nangbangkiki.냉수펌프제어Column),String)
End If
End Get
Set
Me(Me.tabletbl_nangbangkiki.냉수펌프제어Column) = value
End Set
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public Property 냉각수펌프제어() As String
Get
If Me.Is냉각수펌프제어Null Then
Return String.Empty
Else
Return CType(Me(Me.tabletbl_nangbangkiki.냉각수펌프제어Column),String)
End If
End Get
Set
Me(Me.tabletbl_nangbangkiki.냉각수펌프제어Column) = value
End Set
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public Function Is설명Null() As Boolean
@@ -30719,6 +30777,30 @@ Partial Public Class DS
Public Sub Set대수Null()
Me(Me.tabletbl_nangbangkiki.대수Column) = Global.System.Convert.DBNull
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public Function Is냉수펌프제어Null() As Boolean
Return Me.IsNull(Me.tabletbl_nangbangkiki.냉수펌프제어Column)
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public Sub Set냉수펌프제어Null()
Me(Me.tabletbl_nangbangkiki.냉수펌프제어Column) = Global.System.Convert.DBNull
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public Function Is냉각수펌프제어Null() As Boolean
Return Me.IsNull(Me.tabletbl_nangbangkiki.냉각수펌프제어Column)
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
Public Sub Set냉각수펌프제어Null()
Me(Me.tabletbl_nangbangkiki.냉각수펌프제어Column) = Global.System.Convert.DBNull
End Sub
End Class
'''<summary>