update
This commit is contained in:
parent
cd5495f76e
commit
0d1ce3369d
|
@ -1,77 +1,79 @@
|
|||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationDewormingLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationDewormingLog列表
|
||||
* Class OperationDewormingLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationDewormingLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:04
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['fence_house_id', 'animal_info_id'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:04
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationDewormingLog::where($this->searchWhere)
|
||||
->field(['id', 'fence_house_id', 'animal_info_id', 'vermifuge_name', 'deworming_date', 'deworming_method', 'operator', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:04
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationDewormingLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationDewormingLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationDewormingLog列表
|
||||
* Class OperationDewormingLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationDewormingLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:04
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['fence_house_id', 'animal_info_id'],
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:04
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationDewormingLog::where($this->searchWhere)
|
||||
->with(['fenceHouseAttr', 'animalInfo'])
|
||||
->field(['id', 'fence_house_id', 'animal_info_id', 'vermifuge_name', 'deworming_date', 'deworming_method', 'operator', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:04
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationDewormingLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
|
@ -1,77 +1,79 @@
|
|||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationDisinfectLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationDisinfectLog列表
|
||||
* Class OperationDisinfectLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationDisinfectLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:07
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['fence_house_id', 'animal_info_id'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:07
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationDisinfectLog::where($this->searchWhere)
|
||||
->field(['id', 'fence_house_id', 'animal_info_id', 'disinfectant_name', 'concentration', 'disinfectant_method', 'disinfectant_area', 'operator', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:07
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationDisinfectLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationDisinfectLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationDisinfectLog列表
|
||||
* Class OperationDisinfectLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationDisinfectLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:07
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['fence_house_id', 'animal_info_id'],
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:07
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationDisinfectLog::where($this->searchWhere)
|
||||
->with(['fenceHouseAttr', 'animalInfo'])
|
||||
->field(['id', 'fence_house_id', 'animal_info_id', 'disinfectant_name', 'concentration', 'disinfectant_method', 'disinfectant_area', 'operator', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:07
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationDisinfectLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
|
@ -1,77 +1,79 @@
|
|||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationFeedingLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationFeedingLog列表
|
||||
* Class OperationFeedingLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationFeedingLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:09
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['animal_info_id', 'fence_house_id'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:09
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationFeedingLog::where($this->searchWhere)
|
||||
->field(['id', 'animal_info_id', 'fence_house_id', 'feed_type', 'feed_brand', 'feed_consumption', 'operator', 'image', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:09
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationFeedingLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationFeedingLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationFeedingLog列表
|
||||
* Class OperationFeedingLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationFeedingLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:09
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['animal_info_id', 'fence_house_id'],
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:09
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationFeedingLog::where($this->searchWhere)
|
||||
->with(['fenceHouseAttr', 'animalInfo'])
|
||||
->field(['id', 'animal_info_id', 'fence_house_id', 'feed_type', 'feed_brand', 'feed_consumption', 'operator', 'image', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:09
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationFeedingLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
|
@ -1,77 +1,79 @@
|
|||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationVaccinumLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationVaccinumLog列表
|
||||
* Class OperationVaccinumLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationVaccinumLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:11
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['fence_house_id'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:11
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationVaccinumLog::where($this->searchWhere)
|
||||
->field(['id', 'fence_house_id', 'animal_info_id', 'vaccine_name', 'vaccine_manufacturers', 'vaccine_batch', 'vaccination_method', 'vaccination_site', 'immune_validity_period', 'operator', 'image', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:11
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationVaccinumLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationVaccinumLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationVaccinumLog列表
|
||||
* Class OperationVaccinumLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationVaccinumLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:11
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['fence_house_id'],
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:11
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationVaccinumLog::where($this->searchWhere)
|
||||
->with(['fenceHouseAttr', 'animalInfo'])
|
||||
->field(['id', 'fence_house_id', 'animal_info_id', 'vaccine_name', 'vaccine_manufacturers', 'vaccine_batch', 'vaccination_method', 'vaccination_site', 'immune_validity_period', 'operator', 'image', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:11
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationVaccinumLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
|
@ -1,77 +1,79 @@
|
|||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationWaterLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationWaterLog列表
|
||||
* Class OperationWaterLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationWaterLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:13
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['animal_info_id', 'fence_house_id', 'water_consumption', 'operator', 'image', 'remark'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:13
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationWaterLog::where($this->searchWhere)
|
||||
->field(['id', 'animal_info_id', 'fence_house_id', 'water_consumption', 'operator', 'image', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:13
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationWaterLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\api\lists\suyuan_operation;
|
||||
|
||||
|
||||
use app\common\lists\BaseDataLists;
|
||||
use app\common\model\suyuan_operation\OperationWaterLog;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* OperationWaterLog列表
|
||||
* Class OperationWaterLogLists
|
||||
* @package app\api\listssuyuan_operation
|
||||
*/
|
||||
class OperationWaterLogLists extends BaseDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:13
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['animal_info_id', 'fence_house_id', 'water_consumption', 'operator', 'image', 'remark'],
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:13
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return OperationWaterLog::where($this->searchWhere)
|
||||
->with(['fenceHouseAttr', 'animalInfo'])
|
||||
->field(['id', 'animal_info_id', 'fence_house_id', 'water_consumption', 'operator', 'image', 'remark'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2024/01/15 10:13
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return OperationWaterLog::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue