POST api/BARPackage

패키지정보 신규 등록하기

Detailed Information

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
model
등록할 패키지정보

Define this parameter in the request body.

Parameter Information

model

Property Description
WPKG_ID (Nullable`1)
[*UD]패키지번호[KEY, ID]
WPKG_NoType (Nullable`1)
[*CU]패키지구분[SystemCodeID]
WPKG_No (String)
패키지번호
CNT_WHOD_WPKG_ID (Int32)
등록된 입출내역수
WPKG_InMan (Nullable`1)
[*C]등록자[ID] : Data를 최초 입력한 사용자ID
WPKG_InDate (DateTime)
등록일 : Data를 최초 입력한 일자와 시간
WPKG_UpMan (Nullable`1)
[*UD]수정자[ID] : Data를 최종 수정한 사용자ID
WPKG_UpDate (DateTime)
수정일 : Data를 최종 수정한 일자와 시간
TC_WPKG_UpDate (Nullable`1)
[*UD]수정일 Ticks값
SC_KEY_ID (String)
[*C]입고 또는 작업Order[구분+ID]
SN_WPKG_NoType (String)
패키지구분[명]
SN_WPKG_InMan (String)
등록자[명]
SN_WPKG_UpMan (String)
수정자[명]
i_AppCode (String)
[*CRUD]Application 코드 : 요청하는 Application(Client)
i_Index (Int32)
순번 : list의 내부순번(DB에서 data load시 결정됨)
i_PageRowNumber (String)
Page순번 : paging list에서 UI에 표시되는 순번(paging list에서만 사용됨)
i_ItemsCount (String)
결과목록총수 : paging list에서 query결과목록의 총수(paging list에서만 사용됨)

Request body formats

application/json, text/json

Sample:
{
  "WPKG_ID": 1,
  "WPKG_NoType": 1,
  "WPKG_No": "sample string 1",
  "CNT_WHOD_WPKG_ID": 2,
  "WPKG_InMan": 1,
  "WPKG_InDate": "2026-09-10T15:25:36.415088+09:00",
  "WPKG_UpMan": 1,
  "WPKG_UpDate": "2026-09-10T15:25:36.415088+09:00",
  "TC_WPKG_UpDate": 1,
  "SC_KEY_ID": "sample string 5",
  "SN_WPKG_NoType": "sample string 6",
  "SN_WPKG_InMan": "sample string 7",
  "SN_WPKG_UpMan": "sample string 8",
  "i_AppCode": "sample string 9",
  "i_Index": 10,
  "i_PageRowNumber": "sample string 11",
  "i_ItemsCount": "sample string 12"
}

application/xml, text/xml

Sample:
<BARPackage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model.WMS">
  <i_AppCode xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model">sample string 9</i_AppCode>
  <i_Index xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model">10</i_Index>
  <i_ItemsCount xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model">sample string 12</i_ItemsCount>
  <i_PageRowNumber xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model">sample string 11</i_PageRowNumber>
  <CNT_WHOD_WPKG_ID>2</CNT_WHOD_WPKG_ID>
  <SC_KEY_ID>sample string 5</SC_KEY_ID>
  <SN_WPKG_InMan>sample string 7</SN_WPKG_InMan>
  <SN_WPKG_NoType>sample string 6</SN_WPKG_NoType>
  <SN_WPKG_UpMan>sample string 8</SN_WPKG_UpMan>
  <TC_WPKG_UpDate>1</TC_WPKG_UpDate>
  <WPKG_ID>1</WPKG_ID>
  <WPKG_InDate>2026-09-10T15:25:36.415088+09:00</WPKG_InDate>
  <WPKG_InMan>1</WPKG_InMan>
  <WPKG_No>sample string 1</WPKG_No>
  <WPKG_NoType>1</WPKG_NoType>
  <WPKG_UpDate>2026-09-10T15:25:36.415088+09:00</WPKG_UpDate>
  <WPKG_UpMan>1</WPKG_UpMan>
</BARPackage>

application/x-www-form-urlencoded

Sample:

Sample not available.