12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352 |
- using System;
- using System.Collections;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using Janus.Windows.UI;
- using Microsoft.VisualBasic.PowerPacks;
- using System.Collections.Generic;
- using System.Data;
- using System.Drawing;
- namespace IControls_FireManager
- {
-
-
-
-
-
-
- public class _UIPanel : Janus.Windows.UI.Dock.UIPanel
- {
- public override bool Closed
- {
- get
- {
- return base.Closed;
- }
- set
- {
-
- base.Hide();
- }
- }
- }
-
-
-
-
- public class _NODE
- {
- public int T_DEPTH;
- public int T_INDEX;
- public string T_PARENT;
- }
-
-
-
-
- public class _RECEIVER
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
-
- private int _Accumulation_Second;
- public bool ENABLE;
- public string KEY_NAME;
- public string NAME;
- public bool REDUNDANT_FLAG = false;
- public string TYPE;
- public string IP;
- public string USERID = "icontrols";
- public string USER_PASSWORD = "";
- public int EVENT_PORT = 9001;
- public int COMMAND_PORT = 9002;
- public string sUseFlag
- {
- get
- {
- string sRet = "N";
- if (ENABLE == true)
- {
- sRet = "Y";
- }
- return sRet;
- }
- set
- {
- if (value.Substring(0, 1).ToUpper() == "Y")
- {
- ENABLE = true;
- }
- else
- ENABLE = false;
-
- }
- }
- public bool FIRE_ACCUMULATION_MODE;
- public int FIRE_ACCUMULATION_SECOND
- {
- get
- {
- return (_Accumulation_Second);
- }
- set
- {
- if (value == 0)
- {
- FIRE_ACCUMULATION_MODE = false;
- _Accumulation_Second = 0;
- }
- if ((value == 30) || (value == 40) || (value == 50) || (value == 60))
- {
- FIRE_ACCUMULATION_MODE = true;
- _Accumulation_Second = value;
- }
- }
- }
-
- public string MODEL;
- public bool RECOVER_MODE;
- public bool JUMP_TO_VIEW;
- public bool MASTER_FLAG;
- public int COM_BOARD_MAX_NUM;
- public int IO_BOARD_MAX_NUM;
-
-
-
-
-
-
-
- public _SERIAL_PORT Port4CommBoard = new _SERIAL_PORT();
- public Hashtable Hash_COM_BOARD = new Hashtable();
- public ArrayList List_COM_BOARD_ID = new ArrayList();
-
-
-
- public _SERIAL_PORT Port4IOBoard = new _SERIAL_PORT();
- public Hashtable Hash_IO_BOARD = new Hashtable();
- public ArrayList List_IO_BOARD_ID = new ArrayList();
-
-
- public _SERIAL_PORT Port4KeyPAD = new _SERIAL_PORT();
- public _KEYPAD KEYPAD;
-
-
- public _SERIAL_PORT Port4EmergencyBroadcast = new _SERIAL_PORT();
- public _EMERGENCY_BROADCAST EMERGENCY_BROADCAST;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public Hashtable HASH_PAGE = new Hashtable();
-
- public ArrayList LIST_PAGE_ID = new ArrayList();
-
- public string Set_SubKey(_RECEIVER RECEIVER, string PORT_NUM)
- {
- return RECEIVER.ID + _Text.Minus + PORT_NUM;
- }
- }
- public class _SERIAL_PORT
- {
- public int COMM_ID;
- private int _COM_PortNum;
- private int _COM_BaudRate;
- private COMM_PARITY _COM_Parity;
- private int _COM_DataBits;
- private COMM_STOPBIT _COM_Stopbit;
- public int TimeOut;
- public int Delay;
- public int Delta_Volt;
- public int Retry_Count;
- public Boolean Use_Flag;
- public int PortNo
- {
- get
- {
- return (this._COM_PortNum);
- }
- set
- {
- this._COM_PortNum = value;
- }
- }
- public int BaudRate
- {
- get
- {
- return (this._COM_BaudRate);
- }
- set
- {
-
- if ((value == 2400) || (value == 4800) || (value == 9600) || (value == 19200) || (value == 38400)
- || (value == 57600) || (value == 115200))
- {
- this._COM_BaudRate = value;
- }
- }
- }
- public COMM_PARITY Parity
- {
- get
- {
- return (this._COM_Parity);
- }
- set
- {
- switch (value)
- {
- case COMM_PARITY.NONE:
- case COMM_PARITY.EVEN:
- case COMM_PARITY.ODD:
- _COM_Parity = value;
- break;
- default:
- _COM_Parity = COMM_PARITY.NONE;
- break;
- }
- }
- }
- public void Set_Parity(string sParity)
- {
- switch (sParity)
- {
- case "NONE":
- _COM_Parity = COMM_PARITY.NONE;
- break;
- case "EVEN":
- _COM_Parity = COMM_PARITY.EVEN;
- break;
- case "ODD":
- _COM_Parity = COMM_PARITY.ODD;
- break;
- default:
- _COM_Parity = COMM_PARITY.NONE;
- break;
- }
- }
- public COMM_STOPBIT StopBits
- {
- get
- {
- return (this._COM_Stopbit);
- }
- set
- {
- this._COM_Stopbit = value;
- }
- }
- public void Set_StopBits(string sStopBits)
- {
- switch (sStopBits)
- {
- case "1":
- this._COM_Stopbit = COMM_STOPBIT.ONESTOPBIT;
- break;
-
-
-
- case "2":
- this._COM_Stopbit = COMM_STOPBIT.TWOSTOPBITS;
- break;
- default:
- this._COM_Stopbit = COMM_STOPBIT.ONESTOPBIT;
- break;
- }
- }
- public int DataBits
- {
- get
- {
- return (this._COM_DataBits);
- }
- set
- {
-
- if ((value >= 5) && (value <= 8))
- {
- this._COM_DataBits = value;
- }
- }
- }
- public string Get_COM_PORT()
- {
- return (string.Format("COM{0}", this._COM_PortNum));
- }
- public string Get_COM_BAUDRATE()
- {
- return (this._COM_BaudRate.ToString());
- }
- public string Get_COM_PARITY()
- {
- string sRet = "";
- switch (this._COM_Parity)
- {
- case COMM_PARITY.NONE:
- sRet = "NONE";
- break;
- case COMM_PARITY.EVEN:
- sRet = "EVEN";
- break;
- case COMM_PARITY.ODD:
- sRet = "ODD";
- break;
- }
- return (sRet);
- }
- public string Get_COM_STOPBIT()
- {
- string sRet = "";
- switch (this._COM_Stopbit)
- {
- case COMM_STOPBIT.ONESTOPBIT:
- sRet = "1";
- break;
-
-
-
- case COMM_STOPBIT.TWOSTOPBITS:
- sRet = "2";
- break;
- }
- return (sRet);
- }
- public string Get_COM_DATABITS()
- {
- return (this._COM_DataBits.ToString());
- }
-
- }
-
-
-
- public class _COM_BOARD
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
-
- private string KEY_NAME;
- public int BOARD_ID;
- public string BOARD_NAME;
- public bool bCh1_Use_Flag;
- public bool bCh2_Use_Flag;
-
- public bool bCh3_Use_Flag;
- public bool bCh4_Use_Flag;
- public bool bUse_Flag;
-
- public void Set_KEY_NAME(string sValue)
- {
- this.KEY_NAME = sValue;
- }
- public string Get_KEY_NAME()
- {
- return this.KEY_NAME;
- }
- public string Get_CH1_Use()
- {
- string sRetData = "사용";
- if (bCh1_Use_Flag == false)
- {
- sRetData = "사용안함";
- }
- if (bUse_Flag == false)
- {
- sRetData = "-";
- }
- return sRetData;
- }
- public string Get_CH2_Use()
- {
- string sRetData = "사용";
- if (bCh2_Use_Flag == false)
- {
- sRetData = "사용안함";
- }
- if (bUse_Flag == false)
- {
- sRetData = "-";
- }
- return sRetData;
- }
-
-
- public string Get_CH3_Use()
- {
- string sRetData = "사용";
- if (bCh3_Use_Flag == false)
- {
- sRetData = "사용안함";
- }
- if (bUse_Flag == false)
- {
- sRetData = "-";
- }
- return sRetData;
- }
- public string Get_CH4_Use()
- {
- string sRetData = "사용";
- if (bCh4_Use_Flag == false)
- {
- sRetData = "사용안함";
- }
- if (bUse_Flag == false)
- {
- sRetData = "-";
- }
- return sRetData;
- }
- public string Get_Use()
- {
- string sRetData = "사용";
- if (bUse_Flag == false)
- {
- sRetData = "사용안함";
- }
- return sRetData;
- }
- public void Set_CH1_Use(string sValue)
- {
- if (sValue == "Y")
- {
- bCh1_Use_Flag = true;
- }
- else
- {
- bCh1_Use_Flag = false;
- }
- }
- public void Set_CH2_Use(string sValue)
- {
- if (sValue == "Y")
- {
- bCh2_Use_Flag = true;
- }
- else
- {
- bCh2_Use_Flag = false;
- }
- }
-
-
- public void Set_CH3_Use(string sValue)
- {
- if (sValue == "Y")
- {
- bCh3_Use_Flag = true;
- }
- else
- {
- bCh3_Use_Flag = false;
- }
- }
- public void Set_CH4_Use(string sValue)
- {
- if (sValue == "Y")
- {
- bCh4_Use_Flag = true;
- }
- else
- {
- bCh4_Use_Flag = false;
- }
- }
- public void Set_Use_Flag(string sValue)
- {
- if (sValue == "Y")
- {
- bUse_Flag = true;
- }
- else
- {
- bUse_Flag = false;
- }
- }
-
-
-
- }
- public class _Channel
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
- public string KEY_NAME;
- public List<_REPEATER> LIST_CHANNEL1_REPEATER = new List<_REPEATER>();
- public List<_REPEATER> LIST_CHANNEL2_REPEATER = new List<_REPEATER>();
- }
-
-
-
- public class _IO_BOARD
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
- private string KEY_NAME;
- public int BOARD_ID;
- public string BOARD_NAME;
- public bool bUse_Flag;
- public void Set_KEY_NAME(string sValue)
- {
- this.KEY_NAME = sValue;
- }
- public string Get_KEY_NAME()
- {
- return this.KEY_NAME;
- }
- public string Get_Use()
- {
- string sRetData = "사용";
- if (bUse_Flag == false)
- {
- sRetData = "사용안함";
- }
- return sRetData;
- }
- public void Set_Use_Flag(string sValue)
- {
- if (sValue == "Y")
- {
- bUse_Flag = true;
- }
- else
- {
- bUse_Flag = false;
- }
- }
- }
-
-
-
- public class _KEYPAD
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
- private string KEY_NAME;
- public int BOARD_ID;
- public string BOARD_NAME;
- public bool bUse_Flag;
- public void Set_KEY_NAME(string sValue)
- {
- this.KEY_NAME = sValue;
- }
- public string Get_KEY_NAME()
- {
- return this.KEY_NAME;
- }
- public string Get_Use()
- {
- string sRetData = "사용";
- if (bUse_Flag == false)
- {
- sRetData = "사용안함";
- }
- return sRetData;
- }
- public void Set_Use_Flag(string sValue)
- {
- if (sValue == "Y")
- {
- bUse_Flag = true;
- }
- else
- {
- bUse_Flag = false;
- }
- }
- }
-
-
-
- public class _EMERGENCY_BROADCAST
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
- private string KEY_NAME;
- public int BOARD_ID;
- public string COMPORT_NAME;
- private bool bUse_Flag;
- public void Set_KEY_NAME(string sValue)
- {
- this.KEY_NAME = sValue;
- }
- public string Get_KEY_NAME()
- {
- return this.KEY_NAME;
- }
- public string Get_Use()
- {
- string sRetData = "사용";
- if (bUse_Flag == false)
- {
- sRetData = "사용안함";
- }
- return sRetData;
- }
- public void Set_Use_Flag(string sValue)
- {
- if (sValue == "Y")
- {
- bUse_Flag = true;
- }
- else
- {
- bUse_Flag = false;
- }
- }
- }
-
-
-
- public class POINT_INPUT
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
- public string KEY_NAME;
- }
-
-
-
- public class POINT_OUTPUT
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
- public string KEY_NAME;
- }
-
-
-
- public class _OPER_GROUP
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
- public string KEY_NAME;
- }
-
-
-
- public class _OPER_SET
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
- public string KEY_NAME;
- }
-
-
-
-
- public class _IMAGE
- {
-
- public string ID;
- public _NODE NODE = new _NODE();
-
-
-
- public string KEY_NAME;
- public int x;
- public int y;
- public int w;
- public int h;
- }
-
-
-
-
- public class _ReceiverXML
- {
- public string ID;
- public string IP;
- public string KEY_NAME;
- }
-
-
-
- public class _FieldSetting
- {
- public string Receiver_ID = null;
- public string ID = null;
- public string Name = null;
- public string IMAGE = null;
-
- public ArrayList Button = new ArrayList();
-
- public ArrayList Device = new ArrayList();
- }
- public class _FieldSetting_Button
- {
- public string ID;
- public string Xposition;
- public string Yposition;
- public string Image;
- public string NAME;
- public string JumpField;
- public string Width;
- public string Height;
- }
- public class _FieldSetting_Device
- {
- public string ID;
- public string Xposition;
- public string Yposition;
- public string DevIconID;
- }
-
-
-
- public class _DevTypeXML
- {
- public string ID;
- public string FILENAME;
- public string NAME;
- }
-
-
-
- public class _PictureBoxItem : PictureBox
- {
-
-
-
-
-
-
- public Item_Type ItemType;
-
- public string Info;
-
- public string Device_Icon_ID;
-
- public string Device_Icon_NAME;
-
- public bool MouseDrag_Status;
-
- public int MouseDown_X;
-
- public int MouseDown_Y;
-
- public string FileName;
-
- public string FullPath_FileName;
-
- public bool Selected;
-
-
- public ShapeContainer ShapeContainer_Seleted = new ShapeContainer();
- public LineShape LineShape_TOP = new LineShape();
- public LineShape LineShape_BOTTOM = new LineShape();
- public LineShape LineShape_LEFT = new LineShape();
- public LineShape LineShape_RIGHT = new LineShape();
-
-
-
-
-
- public string Device_Oper_ID;
-
-
- public string Device_DB_Name;
-
- public string Button_JumpPageName;
-
-
- public string NodeText()
- {
- string result=null;
-
- string[] Temps = FileName.Split('.');
-
-
- if (ItemType == Item_Type.Device)
- {
- if (Device_Oper_ID == null || Device_Oper_ID.Length == 0 || Device_Oper_ID == _Text.Blank || Device_Oper_ID == _Text.None)
- result = Device_Icon_NAME;
- else
- result = Device_Icon_NAME + _Text.Blank + _Text.LeftBracket + Device_Oper_ID + _Text.Colon + Device_DB_Name +_Text.RightBracket;
- }
- else if (ItemType == Item_Type.Button)
- {
- if (Button_JumpPageName == null || Button_JumpPageName.Length == 0 || Button_JumpPageName == _Text.Blank || Button_JumpPageName == _Text.None)
- result = Temps[0];
- else
- result = Temps[0] + _Text.Blank + _Text.LeftBracket + Button_JumpPageName + _Text.RightBracket;
- }
- return result;
- }
- }
- public class _Page
- {
-
- public string NodeKey;
-
- public string NodeText;
-
- public string ID;
-
- public string Receiver_ID;
-
- public _PictureBoxItem PictureBoxItem_BackGround;
-
- public Hashtable HASH_ICON = new Hashtable();
-
- public ArrayList LIST_ICON_ID = new ArrayList();
-
- public Image Capure_Image_Page;
- }
-
-
-
-
-
- public enum REPEATER_KIND
- {
- NULL = 0,
- _2BY2 = 1,
- _4BY4 = 2,
- _ANALOG_DETECT_SMOKE = 3,
- _ANALOG_DETECT_TEMP = 4
- }
- public class _REPEATER
- {
-
-
-
-
-
-
- private string KEY_NAME;
- public void Set_KEY_NAME(string sValue)
- {
- this.KEY_NAME = sValue;
- }
- public string Get_KEY_NAME()
- {
- return this.KEY_NAME;
- }
- public int REPEATER_ID;
- public REPEATER_KIND KIND_CODE = REPEATER_KIND.NULL;
- public bool CUT_FLAG;
- public bool USE_FLAG;
- }
- public class _DB_Connect
- {
- public string sSERVER_NAME;
- public string sDATABASE_NAME;
- public string sUSER_ID;
- public string sPASSWORD;
- };
-
-
- public class _OUTDEVIDE_GROUP
- {
- public int Receive_ID;
- public string ID;
- public string Group;
- }
-
- public class _MAP
- {
- public int Receive_ID;
- public int Map_No;
- public string ID;
- public string Map;
- }
-
- public struct code_InOutType
- {
- public const String Input = "I";
- public const String Output = "O";
- }
-
-
-
- public class _Code_Position
- {
-
- public string Code_Position_ID;
- public string Code_Emergency_ID;
-
- public string Code_Position_NAME;
-
- public bool Enable;
- }
- public class _Code_Device_Type
- {
-
- public string DEVICE_TYPE;
-
- public string DEVICE_TYPE_NAME;
-
- public string SYMBOL_TYPE;
-
- public string SEQ_NO;
-
- public string USE_FLAG;
- }
- public class _Code_IO_Board
- {
-
- public string IOBOARD_NAME;
-
- public string IOBOARD_COM_PORT;
-
- public string IOBOARD_BOARD_ID;
-
- public string IOBOARD_LOOP_NO;
-
- public string IOBOARD_REPEATER_ID;
-
- public string IOBOARD_DEVICE_ID;
-
- public string IOBOARD_INOUT;
-
- public string IOBOARD_ADDREPEATER_YN;
-
- public string IOBOARD_ADDREPEATER_TYPE;
- }
- public class _Code_Event_Type
- {
-
- public string EVENT_TYPE;
-
- public string EVENT_TYPE_NAME;
- }
-
-
-
-
- public class _Excel_Position
- {
-
- public string Building;
-
- public string Stair;
-
- public string Floor;
- }
-
- public class _Excel_Sheet
- {
-
- public string Sheet_Name;
-
-
- public string BOARD_ID;
-
-
- public string LOOP_NO;
-
- public int Repeater_Count;
-
- public ArrayList List_Repeater = new ArrayList();
- }
-
- public class _Excel_Repeater
- {
-
- public POINT_TYPE TYPE;
-
-
- public string NAME;
-
-
- public string REPEATER_ID;
-
- public _Excel_Position Excel_Position = new _Excel_Position();
-
- public ArrayList List_Point = new ArrayList();
- }
-
- public class _Excel_Point
- {
-
- public POINT_TYPE TYPE;
-
- public string NAME;
-
- public string PortNum;
-
- public _Excel_Position Excel_Position = new _Excel_Position();
-
- public string Code_FullName;
- public string Code_Type;
- public string Code_Name;
- }
-
- public class _Excel_Group
- {
- public string Group_ID;
- public string Group_Name;
- }
-
- public class _Excel_Map
- {
- public string Map_ID;
- public string Map_Name;
- public string Group_Number;
- public string Groups;
- public string InDevices;
- }
-
- public class _OrderByCircuitNo
- {
-
- public string CircuitNo;
-
- public string Type;
-
- public string Location;
-
- public string DeviceNickName;
-
- public string EmergencyCode;
-
- public string XML;
- }
-
- public class _ImportPoint
- {
- public DataRowCollection IN_Points = null;
- public DataRowCollection OUT_Points = null;
- }
-
-
-
-
- public class _Report_Column_Info
- {
- public string Column_Key;
- public string Column_Name;
- public float Column_Size;
- }
-
-
-
-
-
- public class _Report_OperGroup
- {
- public string Group_Header { get; set; }
- public int Group_No { get; set; }
- public string Group_ID { get; set; }
- public string Group_Name { get; set; }
- public int Detail_No { get; set; }
- public string Detail_Circuit { get; set; }
- public string Detail_Type { get; set; }
- public string Detail_Location { get; set; }
- public string Detail_Name { get; set; }
- }
-
- public class _Report_Operset
- {
- public string Group_Header { get; set; }
- public int Group_No { get; set; }
- public string Group_ID { get; set; }
- public string Group_Name { get; set; }
- public string Group_Header_Sub { get; set; }
- public string Detail_IO { get; set; }
- public string Detail_Receiver { get; set; }
- public string Detail_ID { get; set; }
- public string Detail_Name { get; set; }
- public string Detail_Type { get; set; }
- public string Detail_Location { get; set; }
- }
-
- public class _Report_Page
- {
- public string Group_Header { get; set; }
- public int Group_No { get; set; }
- public string Group_Name { get; set; }
- public string Group_Cnt { get; set; }
- public string Group_Etc { get; set; }
- public Image Detail_Image { get; set; }
- }
-
- public class _USER
- {
- public string USER_NO;
- public string USER_NAME;
- public string USER_ID;
- public string USER_PW;
- public string USER_COMPANY;
- public string USER_POSITION;
- public string USER_PHONE;
- }
- }
|