移动签到日志
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>用户注册接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>https://clockin-test.haier.net/api/clockin/information/operationLog</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数映射</h5>
<pre><code>//应用名称(小程序传applet/卡片传card)
private String appName;
//操作
private String operationName;
//操作内容
private String operationDesc;
//操作结果
private String operationResult;
//操作类型(1-操作日志,2-降级日志)
private Integer operationType;
@TableField(exist = false)
private Map&lt;String, Object&gt; describesRecords;
//详细记录(接口地址/入参(body、header)/出参(body、header))
private String describes;
//执行时长(单位毫秒)
private BigDecimal execDuration;
//是否在页面显示(1是0否)
private Integer pageDisplay;
//工号
private String creator;
//姓名
private String creatorName;</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;appName&quot;:&quot;应用名称&quot;,
&quot;operationName&quot;:&quot;操作&quot;,
&quot;operationDesc&quot;:&quot;操作内容&quot;,
&quot;operationResult&quot;:&quot;操作结果&quot;,
&quot;operationType&quot;:1,
&quot;describesRecords&quot;:{
&quot;url&quot;: &quot;https://clockin-test.haier.net/api/clockin/information/clockinNow&quot;,
&quot;header&quot;: {
&quot;Access-Token&quot;: &quot;eyJhbGciOiJSUzI1NiJ9.eyJhY2NvdW50TnVtYmVyIjoiYTAwNDgyNTkiLCJ1YyI6IjEiLCJpbnN0YW5jZUlkIjoxMzA3NjgxMTY4NDAxMjU3MzUwLCJsb2dpbk5hbWUiOiJhMDA0ODI1OSIsImRvbWFpbiI6IklETSIsInRlbmFudElkIjoxLCJpZCI6MjIxMTE0NDMzNjY5LCJsb2dpblNvdXJjZSI6IjYiLCJqdGkiOiJjNTg5YmVjMi0zMjEwLTRiZTItYTVhYi05ZGMwNWQ2MGRjYzEiLCJuYmYiOjE3Mjk1NjE0MTcsImV4cCI6MTcyOTYxMjgwMH0.UI9Zo18AswGjiJaYu17WBsRz5t3UVeGTCTcHcVM04FFLQ2Yx7u3Yplcg2CUVWEsqdb1t2sEJS016W3Vl58jauyqilY64smUyDLcKMQVlAFo_j7tI2Uz4dp0gpM40lkyuH3vAgr7ZtLrCWejzkHXSnz8D5OrxiTLutG7oQUw0Mz4nDmtNKdzXqlrmgHQc-j1xzfN76IoSYqHyoiN-Cxf9VlpzTwJxT7qgO9ig9DOahydub1qyI8lI9fRAZwjH74fH1ckOtBLUOxsnchlIVYabB-tnuzsXThIGFEP17-ViiiXTsN5qRs8uetByXgni-gnw7bm55vM-9Hu1FwxpOpDWEA&quot;
},
&quot;data&quot;: {
&quot;data&quot;: {
&quot;code&quot;: 200,
&quot;message&quot;: &quot;success&quot;,
&quot;data&quot;: {
&quot;zone&quot;: &quot;+08:00&quot;,
&quot;time&quot;: &quot;2024-10-23 06:11:36&quot;,
&quot;timestamp&quot;: 1729635096952
}
},
&quot;header&quot;: {
&quot;content-type&quot;: &quot;application/json;charset=UTF-8&quot;,
&quot;date&quot;: &quot;Tue, 22 Oct 2024 22:11:36 GMT&quot;,
&quot;server&quot;: &quot;nginx&quot;,
&quot;via&quot;: &quot;kong/2.2.1&quot;,
&quot;x-kong-proxy-latency&quot;: &quot;0&quot;,
&quot;x-kong-upstream-latency&quot;: &quot;4&quot;
},
&quot;trace&quot;: &quot;02172963509584555f5177f30a27859bea770cf8af79eef000lps&quot;,
&quot;statusCode&quot;: 200,
&quot;code&quot;: 0,
&quot;ok&quot;: true,
&quot;cookies&quot;: [],
&quot;errMsg&quot;: &quot;request:ok&quot;
}
},
&quot;execDuration&quot;:&quot;187654.11&quot;,
&quot;pageDisplay&quot;:0,
&quot;creator&quot;:&quot;A0048259&quot;,
&quot;creatorName&quot;:&quot;王宇&quot;
}</code></pre>
<h5>返回参数说明</h5>
<pre><code>{
&quot;code&quot;: 200,
&quot;message&quot;: &quot;success&quot;,
&quot;data&quot;: 1,
&quot;throwable&quot;: null
}</code></pre>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>