example-xml-req-repl.txt

来自「考勤管理系统源码」· 文本 代码 · 共 102 行

TXT
102
字号
example of a request for all users

<tcapp:GetTimeEntryReport>
  <tcapp:ClientName>GM</tcapp:ClientName>
  <tcapp:StartDate>10/4/2002</tcapp:StartDate>
  <tcapp:EndDate>11/28/2002</tcapp:EndDate>
  <tcapp:AllUsers/>
</tcapp:GetTimeEntryReport>


example of a request for a list of users (employees)

<tcapp:GetTimeEntryReport>
  <tcapp:ClientName>ford</tcapp:ClientName>
  <tcapp:StartDate>10/4/2002</tcapp:StartDate>
  <tcapp:EndDate>11/28/2002</tcapp:EndDate>
  <tcapp:Users>
    <tcapp:UserName>fred</tcapp:UserName>
    <tcapp:UserName>CT</tcapp:UserName>
    <tcapp:UserName>syed</tcapp:UserName>
  </tcapp:Users>
</tcapp:GetTimeEntryReport>

example of a response with time entry data for all users

<tcapp:TimeEntries>
  <tcapp:User>
    <tcapp:Name>fred</tcapp:Name>
    <tcapp:TimeEntry>
      <tcapp:Project>Mustang</tcapp:Project>
      <tcapp:ChargeCode>Paint</tcapp:ChargeCode>
      <tcapp:Date>10/04/2002</tcapp:Date>
      <tcapp:Hours>5</tcapp:Hours>
    </tcapp:TimeEntry>
    <tcapp:TimeEntry>
      <tcapp:Project>Mustang</tcapp:Project>
      <tcapp:ChargeCode>Paint</tcapp:ChargeCode>
      <tcapp:Date>10/05/2002</tcapp:Date>
      <tcapp:Hours>8</tcapp:Hours>
    </tcapp:TimeEntry>
  </tcapp:User>
  <tcapp:User>
    <tcapp:Name>CT</tcapp:Name>
    <tcapp:TimeEntry>
      <tcapp:Project>Mustang</tcapp:Project>
      <tcapp:ChargeCode>Paint</tcapp:ChargeCode>
      <tcapp:Date>10/04/2002</tcapp:Date>
      <tcapp:Hours>5</tcapp:Hours>
    </tcapp:TimeEntry>
    <tcapp:TimeEntry>
      <tcapp:Project>Explorer</tcapp:Project>
      <tcapp:ChargeCode>Paint</tcapp:ChargeCode>
      <tcapp:Date>10/05/2002</tcapp:Date>
      <tcapp:Hours>8</tcapp:Hours>
    </tcapp:TimeEntry>
  </tcapp:User>
</tcapp:TimeEntries>


example of a response with time entry data for a list of users

<tcapp:TimeEntries>
  <tcapp:User>
    <tcapp:Name>fred</tcapp:Name>
    <tcapp:TimeEntry>
      <tcapp:Project>Mustang</tcapp:Project>
      <tcapp:ChargeCode>Paint</tcapp:ChargeCode>
      <tcapp:Date>10/04/2002</tcapp:Date>
      <tcapp:Hours>5</tcapp:Hours>
    </tcapp:TimeEntry>
    <tcapp:TimeEntry>
      <tcapp:Project>Mustang</tcapp:Project>
      <tcapp:ChargeCode>Paint</tcapp:ChargeCode>
      <tcapp:Date>10/05/2002</tcapp:Date>
      <tcapp:Hours>8</tcapp:Hours>
    </tcapp:TimeEntry>
  </tcapp:User>
  <tcapp:User>
    <tcapp:Name>CT</tcapp:Name>
    <tcapp:TimeEntry>
      <tcapp:Project>Mustang</tcapp:Project>
      <tcapp:ChargeCode>Paint</tcapp:ChargeCode>
      <tcapp:Date>10/04/2002</tcapp:Date>
      <tcapp:Hours>5</tcapp:Hours>
    </tcapp:TimeEntry>
    <tcapp:TimeEntry>
      <tcapp:Project>Explorer</tcapp:Project>
      <tcapp:ChargeCode>Paint</tcapp:ChargeCode>
      <tcapp:Date>10/05/2002</tcapp:Date>
      <tcapp:Hours>8</tcapp:Hours>
    </tcapp:TimeEntry>
  </tcapp:User>
</tcapp:TimeEntries>
<tcapp:UsersNotInDatabase>
  <tcapp:UserName>syed</tcapp:UserName>
</tcapp:UsersNotInDatabase>





⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?