PUT api/TMSReturn

배송-복귀 수정하기

Detailed Information

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
model
수정할 배송-복귀정보

Define this parameter in the request body.

Parameter Information

model

Property Description
TMST_ID (Nullable`1)
[*UD]배송번호[KEY, ID]
TMST_CDTReturn (String)
복귀완료일시
TMST_ReturnUpMan (Nullable`1)
수정자 : 복귀화면에서 Data를 최종 수정한 사용자ID
TMST_AllUpDate (DateTime)
All수정일 : 각화면에서 Data를 최종 수정한 일자와 시간
TC_TMST_AllUpDate (Nullable`1)
[*U]All수정일 Ticks값
SC_TMST_ReturnPlantPTN (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:
{
  "TMST_ID": 1,
  "TMST_CDTReturn": "sample string 1",
  "TMST_ReturnUpMan": 1,
  "TMST_AllUpDate": "2026-09-10T15:25:29.2157951+09:00",
  "TC_TMST_AllUpDate": 1,
  "SC_TMST_ReturnPlantPTN": "sample string 3",
  "i_AppCode": "sample string 4",
  "i_Index": 5,
  "i_PageRowNumber": "sample string 6",
  "i_ItemsCount": "sample string 7"
}

application/xml, text/xml

Sample:
<TMSReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model.CT">
  <i_AppCode xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model">sample string 4</i_AppCode>
  <i_Index xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model">5</i_Index>
  <i_ItemsCount xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model">sample string 7</i_ItemsCount>
  <i_PageRowNumber xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model">sample string 6</i_PageRowNumber>
  <SC_TMST_ReturnPlantPTN>sample string 3</SC_TMST_ReturnPlantPTN>
  <TC_TMST_AllUpDate>1</TC_TMST_AllUpDate>
  <TMST_AllUpDate>2026-09-10T15:25:29.2157951+09:00</TMST_AllUpDate>
  <TMST_CDTReturn>sample string 1</TMST_CDTReturn>
  <TMST_ID>1</TMST_ID>
  <TMST_ReturnUpMan>1</TMST_ReturnUpMan>
</TMSReturn>

application/x-www-form-urlencoded

Sample:

Sample not available.