shst


根据id查询日常投喂信息

<p>[TOC]</p> <hr /> <h3>接口说明</h3> <ul> <li>根据id查询日常投喂信息</li> </ul> <h3>接口地址</h3> <ul> <li><code>http://xxx.com/pondDaySeeding/getById</code></li> </ul> <h3>请求方式</h3> <ul> <li>GET</li> </ul> <h3>请求参数</h3> <ul> <li><strong>请求头</strong></li> </ul> <table> <thead> <tr> <th style="text-align: center;">参数名</th> <th style="text-align: center;">类型</th> <th style="text-align: center;">是否必选</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: center;">ut</td> <td style="text-align: center;">string</td> <td style="text-align: center;">√</td> <td>token密钥</td> </tr> </tbody> </table> <ul> <li><strong>请求行</strong></li> </ul> <table> <thead> <tr> <th style="text-align: center;">参数名</th> <th style="text-align: center;">类型</th> <th style="text-align: center;">是否必选</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: center;">daySeedingId</td> <td style="text-align: center;">String</td> <td style="text-align: center;">√</td> <td>日常投喂id</td> </tr> </tbody> </table> <h3>响应数据</h3> <table> <thead> <tr> <th style="text-align: center;">参数名</th> <th style="text-align: center;">类型</th> <th style="text-align: center;">说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: center;">res</td> <td style="text-align: center;">String</td> <td style="text-align: center;">1:成功,0:失败</td> </tr> <tr> <td style="text-align: center;">msg</td> <td style="text-align: center;">String</td> <td style="text-align: center;">提示信息</td> </tr> <tr> <td style="text-align: center;">data</td> <td style="text-align: center;">Object</td> <td style="text-align: center;">响应数据</td> </tr> <tr> <td style="text-align: center;">error</td> <td style="text-align: center;">String</td> <td style="text-align: center;">错误信息</td> </tr> <tr> <td style="text-align: center;">count</td> <td style="text-align: center;">String</td> <td style="text-align: center;">数量</td> </tr> </tbody> </table> <h3>响应数据data说明</h3> <table> <thead> <tr> <th style="text-align: center;">参数名</th> <th style="text-align: center;">类型</th> <th style="text-align: center;">说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: center;">daySeedingId</td> <td style="text-align: center;">String</td> <td style="text-align: center;">日常投喂信息id</td> </tr> <tr> <td style="text-align: center;">provisionId</td> <td style="text-align: center;">String</td> <td style="text-align: center;">投入品id</td> </tr> <tr> <td style="text-align: center;">provisionName</td> <td style="text-align: center;">String</td> <td style="text-align: center;">投入品名称</td> </tr> <tr> <td style="text-align: center;">uid</td> <td style="text-align: center;">String</td> <td style="text-align: center;">投喂人员id</td> </tr> <tr> <td style="text-align: center;">userName</td> <td style="text-align: center;">String</td> <td style="text-align: center;">投喂人员名称</td> </tr> <tr> <td style="text-align: center;">pondId</td> <td style="text-align: center;">String</td> <td style="text-align: center;">塘口id</td> </tr> <tr> <td style="text-align: center;">pondName</td> <td style="text-align: center;">String</td> <td style="text-align: center;">塘口名称</td> </tr> <tr> <td style="text-align: center;">count</td> <td style="text-align: center;">String</td> <td style="text-align: center;">投喂数量</td> </tr> <tr> <td style="text-align: center;">addTime</td> <td style="text-align: center;">String</td> <td style="text-align: center;">添加时间</td> </tr> <tr> <td style="text-align: center;">updTime</td> <td style="text-align: center;">String</td> <td style="text-align: center;">修改时间</td> </tr> <tr> <td style="text-align: center;">isDel</td> <td style="text-align: center;">int</td> <td style="text-align: center;">0未删除 1已删除</td> </tr> </tbody> </table> <h3>响应示例</h3> <pre><code>{     &amp;quot;res&amp;quot;: 1,     &amp;quot;msg&amp;quot;: &amp;quot;success&amp;quot;,     &amp;quot;data&amp;quot;: {         &amp;quot;daySeedingId&amp;quot;: &amp;quot;7299941107934b5d9c84c886795edad4&amp;quot;,         &amp;quot;provisionId&amp;quot;: &amp;quot;0a897dd2d9e742bb9b29645eef6cd944&amp;quot;,         &amp;quot;provisionName&amp;quot;: &amp;quot;777&amp;quot;,         &amp;quot;userName&amp;quot;: &amp;quot;root&amp;quot;,         &amp;quot;pondId&amp;quot;: &amp;quot;88ff0d5ba60a4c678d747a24b71c2fe9&amp;quot;,         &amp;quot;pondName&amp;quot;: &amp;quot;塘口二号&amp;quot;,         &amp;quot;count&amp;quot;: &amp;quot;2&amp;quot;,         &amp;quot;addTime&amp;quot;: &amp;quot;2023-03-09 10:10:19&amp;quot;,         &amp;quot;updTime&amp;quot;: &amp;quot;2023-03-09 10:10:19&amp;quot;,         &amp;quot;isDel&amp;quot;: 0,         &amp;quot;uid&amp;quot;: &amp;quot;8418bad8c7dd400e8d7016e3f1850c4d&amp;quot;     },     &amp;quot;count&amp;quot;: 1,     &amp;quot;error&amp;quot;: null }</code></pre> <pre><code>{     &amp;quot;res&amp;quot;: 0,     &amp;quot;msg&amp;quot;: &amp;quot;查询失败&amp;quot;,     &amp;quot;data&amp;quot;: null,     &amp;quot;count&amp;quot;: 0,     &amp;quot;error&amp;quot;: null }</code></pre>

页面列表

ITEM_HTML