获取最近的5条施肥计划
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>获取最近的5条施肥计划列表</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://xgkj.hljnyxx.com/dongnongBackend/index.php//Home/FertilizerApplicator/getPlan</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </li>
</ul>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 0,
&quot;msg&quot;: &quot;查询成功&quot;,
&quot;data&quot;: [
{
&quot;id&quot;: &quot;1&quot;,
&quot;user_id&quot;: &quot;1&quot;,
&quot;mix_time&quot;: {
&quot;1&quot;: 10,
&quot;2&quot;: 10,
&quot;3&quot;: 10,
&quot;4&quot;: 10
},
&quot;is_finish&quot;: &quot;0&quot;,
&quot;start_time&quot;: &quot;2023-03-25 13:00:01&quot;,
&quot;end_time&quot;: &quot;2023-03-26 13:00:01&quot;,
&quot;log_id&quot;: &quot;1&quot;,
&quot;name&quot;: &quot;张老师&quot;
},
{
&quot;id&quot;: &quot;2&quot;,
&quot;user_id&quot;: &quot;1&quot;,
&quot;mix_time&quot;: {
&quot;1&quot;: 10,
&quot;2&quot;: 10,
&quot;3&quot;: 10,
&quot;4&quot;: 10
},
&quot;is_finish&quot;: &quot;0&quot;,
&quot;start_time&quot;: &quot;2023-03-26 13:00:01&quot;,
&quot;end_time&quot;: &quot;2023-03-26 14:00:01&quot;,
&quot;log_id&quot;: &quot;2&quot;,
&quot;name&quot;: &quot;张老师&quot;
},
{
&quot;id&quot;: &quot;3&quot;,
&quot;user_id&quot;: &quot;1&quot;,
&quot;mix_time&quot;: {
&quot;1&quot;: 10,
&quot;2&quot;: 10,
&quot;3&quot;: 10,
&quot;4&quot;: 10
},
&quot;is_finish&quot;: &quot;0&quot;,
&quot;start_time&quot;: &quot;2023-03-26 14:00:01&quot;,
&quot;end_time&quot;: &quot;2023-03-26 15:00:01&quot;,
&quot;log_id&quot;: &quot;3&quot;,
&quot;name&quot;: &quot;张老师&quot;
},
{
&quot;id&quot;: &quot;4&quot;,
&quot;user_id&quot;: &quot;1&quot;,
&quot;mix_time&quot;: {
&quot;1&quot;: 10,
&quot;2&quot;: 10,
&quot;3&quot;: 10,
&quot;4&quot;: 10
},
&quot;is_finish&quot;: &quot;0&quot;,
&quot;start_time&quot;: &quot;2023-03-26 15:00:01&quot;,
&quot;end_time&quot;: &quot;2023-03-26 16:00:01&quot;,
&quot;log_id&quot;: &quot;4&quot;,
&quot;name&quot;: &quot;张老师&quot;
},
{
&quot;id&quot;: &quot;5&quot;,
&quot;user_id&quot;: &quot;1&quot;,
&quot;mix_time&quot;: {
&quot;1&quot;: 10,
&quot;2&quot;: 10,
&quot;3&quot;: 10,
&quot;4&quot;: 10
},
&quot;is_finish&quot;: &quot;0&quot;,
&quot;start_time&quot;: &quot;2023-03-26 16:00:01&quot;,
&quot;end_time&quot;: &quot;2023-03-26 17:00:01&quot;,
&quot;log_id&quot;: &quot;5&quot;,
&quot;name&quot;: &quot;张老师&quot;
}
]
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">mix_time</td>
<td>各个桶的搅拌时间</td>
</tr>
<tr>
<td style="text-align: left;">name</td>
<td>计划负责人</td>
</tr>
<tr>
<td style="text-align: left;">start_time</td>
<td>计划开始时间</td>
</tr>
<tr>
<td style="text-align: left;">end_time</td>
<td>计划结束时间</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>