add 喂食记录

This commit is contained in:
chenbo 2024-01-15 10:09:58 +08:00
parent 0d3fe114f3
commit 5313221944
5 changed files with 455 additions and 0 deletions

View File

@ -0,0 +1,108 @@
<?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\controller\suyuan_operation;
use app\common\controller\BaseLikeAdminController;
use app\api\lists\suyuan_operation\OperationFeedingLogLists;
use app\api\logic\suyuan_operation\OperationFeedingLogLogic;
use app\api\validate\suyuan_operation\OperationFeedingLogValidate;
/**
* OperationFeedingLog控制器
* Class OperationFeedingLogController
* @package app\api\controller\suyuan_operation
*/
class OperationFeedingLogController extends BaseLikeAdminController
{
/**
* @notes 获取列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function lists()
{
return $this->dataLists(new OperationFeedingLogLists());
}
/**
* @notes 添加
* @return \think\response\Json
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function add()
{
$params = (new OperationFeedingLogValidate())->post()->goCheck('add');
$result = OperationFeedingLogLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(OperationFeedingLogLogic::getError());
}
/**
* @notes 编辑
* @return \think\response\Json
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function edit()
{
$params = (new OperationFeedingLogValidate())->post()->goCheck('edit');
$result = OperationFeedingLogLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(OperationFeedingLogLogic::getError());
}
/**
* @notes 删除
* @return \think\response\Json
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function delete()
{
$params = (new OperationFeedingLogValidate())->post()->goCheck('delete');
OperationFeedingLogLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function detail()
{
$params = (new OperationFeedingLogValidate())->goCheck('detail');
$result = OperationFeedingLogLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,77 @@
<?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();
}
}

View File

@ -0,0 +1,120 @@
<?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\logic\suyuan_operation;
use app\common\model\suyuan_operation\OperationFeedingLog;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* OperationFeedingLog逻辑
* Class OperationFeedingLogLogic
* @package app\api\logic\suyuan_operation
*/
class OperationFeedingLogLogic extends BaseLogic
{
/**
* @notes 添加
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/01/15 10:09
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
OperationFeedingLog::create([
'animal_info_id' => $params['animal_info_id'],
'fence_house_id' => $params['fence_house_id'],
'feed_type' => $params['feed_type'],
'feed_brand' => $params['feed_brand'],
'feed_consumption' => $params['feed_consumption'],
'operator' => $params['operator'],
'image' => $params['image'],
'remark' => $params['remark'],
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/01/15 10:09
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
OperationFeedingLog::where('id', $params['id'])->update([
'animal_info_id' => $params['animal_info_id'],
'fence_house_id' => $params['fence_house_id'],
'feed_type' => $params['feed_type'],
'feed_brand' => $params['feed_brand'],
'feed_consumption' => $params['feed_consumption'],
'operator' => $params['operator'],
'image' => $params['image'],
'remark' => $params['remark'],
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/01/15 10:09
*/
public static function delete(array $params): bool
{
return OperationFeedingLog::destroy($params['id']);
}
/**
* @notes 获取详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/01/15 10:09
*/
public static function detail($params): array
{
return OperationFeedingLog::findOrEmpty($params['id'])->toArray();
}
}

View File

@ -0,0 +1,94 @@
<?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\validate\suyuan_operation;
use app\common\validate\BaseValidate;
/**
* OperationFeedingLog验证器
* Class OperationFeedingLogValidate
* @package app\api\validate\suyuan_operation
*/
class OperationFeedingLogValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
];
/**
* @notes 添加场景
* @return OperationFeedingLogValidate
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function sceneAdd()
{
return $this->remove('id', true);
}
/**
* @notes 编辑场景
* @return OperationFeedingLogValidate
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function sceneEdit()
{
return $this->only(['id']);
}
/**
* @notes 删除场景
* @return OperationFeedingLogValidate
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return OperationFeedingLogValidate
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function sceneDetail()
{
return $this->only(['id']);
}
}

View File

@ -0,0 +1,56 @@
<?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\common\model\suyuan_operation;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* OperationFeedingLog模型
* Class OperationFeedingLog
* @package app\common\model\suyuan_operation
*/
class OperationFeedingLog extends BaseModel
{
use SoftDelete;
protected $name = 'operation_feeding_log';
protected $deleteTime = 'delete_time';
/**
* @notes 关联fenceHouseAttr
* @return \think\model\relation\HasOne
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function fenceHouseAttr()
{
return $this->hasOne(\app\common\model\fence_house\FenceHouse::class, 'id', 'fence_house_id');
}
/**
* @notes 关联animalInfo
* @return \think\model\relation\HasOne
* @author likeadmin
* @date 2024/01/15 10:09
*/
public function animalInfo()
{
return $this->hasOne(\app\common\model\animal_info\AnimalInfo::class, 'id', 'animal_info_id');
}
}