Commit e0a1c1a3 authored by fuyunnan's avatar fuyunnan

Merge branch 'master' of 39.100.151.123:hwq/micro

parents ac8e9f1a 41bca52e
...@@ -66,44 +66,44 @@ interface BaseInfoServiceInterface ...@@ -66,44 +66,44 @@ interface BaseInfoServiceInterface
* 根据id获取单个数据 * 根据id获取单个数据
* @param int $id 货币id * @param int $id 货币id
* @param array $columns 要显示的字段 默认全部 ['id', 'name', 'code', 'symbol'] * @param array $columns 要显示的字段 默认全部 ['id', 'name', 'code', 'symbol']
* @return array * @return array|null
*/ */
public function getCurrencyById($id, array $columns = ['id', 'name', 'code', 'symbol']): array; public function getCurrencyById($id, array $columns = ['id', 'name', 'code', 'symbol']);
/** /**
* 根据id获取单个数据 * 根据id获取单个数据
* @param int $id * @param int $id
* @param array $columns 要显示的字段 默认全部 * @param array $columns 要显示的字段 默认全部
* @return array * @return array|null
*/ */
public function getCountryById($id, array $columns = ['*']): array; public function getCountryById($id, array $columns = ['*']);
/** /**
* 获取单个团队数据 * 获取单个团队数据
* @param int $id * @param int $id
* @param array $relations 支持的关联关系 ['leader', 'sites', "users", "parent", "children"] 分别代表 负责人、团队下的站点、团队成员、父级团队,再级团队 * @param array $relations 支持的关联关系 ['leader', 'sites', "users", "parent", "children"] 分别代表 负责人、团队下的站点、团队成员、父级团队,再级团队
* @param array $columns 要显示的字段 默认['id', 'pid', "name", "leader_user_id", "leader_user_id", "department_id"] * @param array $columns 要显示的字段 默认['id', 'pid', "name", "leader_user_id", "leader_user_id", "department_id"]
* @return array * @return array|null
*/ */
public function getTeamById($id, array $relations = [], array $columns = ['id', 'pid', "name", "leader_user_id", "leader_user_id", "department_id"]): array; public function getTeamById($id, array $relations = [], array $columns = ['id', 'pid', "name", "leader_user_id", "leader_user_id", "department_id"]);
/** /**
* 获取单个站点数据 * 获取单个站点数据
* @param int $id * @param int $id
* @param array $relations $relations 支持的关联关系 ['team', 'country'] 分别代表 团队、国家、 * @param array $relations $relations 支持的关联关系 ['team', 'country'] 分别代表 团队、国家、
* @param array $columns 要显示的字段 默认['id', "name", "url", "country_id", "team_id"] * @param array $columns 要显示的字段 默认['id', "name", "url", "country_id", "team_id"]
* @return array * @return array|null
*/ */
public function getSiteById($id, array $relations = [], array $columns = ['id', "name", "url", "country_id", "team_id"]): array; public function getSiteById($id, array $relations = [], array $columns = ['id', "name", "url", "country_id", "team_id"]);
/** /**
* 根据团队id获取对应的站点列表 * 根据团队id获取对应的站点列表
* @param int $teamId 团队id * @param int $teamId 团队id
* @param array $relations $relations 支持的关联关系 ['team', 'country'] 分别代表 团队、国家、 * @param array $relations $relations 支持的关联关系 ['team', 'country'] 分别代表 团队、国家、
* @param array $columns 要显示的字段 默认['id', "name", "url", "country_id", "team_id"] * @param array $columns 要显示的字段 默认['id', "name", "url", "country_id", "team_id"]
* @return array * @return array|null
*/ */
public function getSiteListByTeamId($teamId, array $relations = [], array $columns = ['id', "name", "url", "country_id", "team_id"]): array; public function getSiteListByTeamId($teamId, array $relations = [], array $columns = ['id', "name", "url", "country_id", "team_id"]);
/** /**
* 返回所有货币数据 * 返回所有货币数据
......
<?php
/**
* Created by PhpStorm.
* User: 姜克保
* Date: 2020/5/20
* Time: 15:48
*/
namespace Meibuyu\Micro\Service\Interfaces;
interface MessageTemplateServiceInterface
{
/**
* 返回替换后的模板内容
* @param int $template_id 模板id
* @param array $replace 替换内容(注意顺序)
* @return string
*/
public function getMessage(int $template_id, array $replace = []): string;
}
<?php
/**
* Created by PhpStorm.
* User: 姜克保
* Date: 2020/5/20
* Time: 15:48
*/
namespace Meibuyu\Micro\Service\Interfaces\DingTalk;
interface WebSocketServiceInterface
{
}
...@@ -121,14 +121,15 @@ class ExcelImporter ...@@ -121,14 +121,15 @@ class ExcelImporter
* @param $errorCount * @param $errorCount
* @throws \PhpOffice\PhpSpreadsheet\Exception * @throws \PhpOffice\PhpSpreadsheet\Exception
*/ */
public function checkRequire($requires, $errorCount) public function checkRequire($requires, &$errorCount)
{ {
foreach ($requires as $k => $v) { foreach ($requires as $k => $v) {
if ($v === '') { if (!$v || $v === '') {
$this->setErrorMessage($k . "不能为空", $errorCount); $this->setErrorMessage($k . "不能为空", $errorCount);
continue; return false;
} }
} }
return true;
} }
/** /**
...@@ -137,14 +138,15 @@ class ExcelImporter ...@@ -137,14 +138,15 @@ class ExcelImporter
* @param $errorCount * @param $errorCount
* @throws \PhpOffice\PhpSpreadsheet\Exception * @throws \PhpOffice\PhpSpreadsheet\Exception
*/ */
public function checkNumeric($data, $errorCount) public function checkNumeric($data, &$errorCount)
{ {
foreach ($data as $k => $v) { foreach ($data as $k => $v) {
if (!is_numeric($v)) { if (!is_numeric($v)) {
$this->setErrorMessage("{$k}只能是数字", $errorCount); $this->setErrorMessage("{$k}只能是数字", $errorCount);
continue; return false;
} }
} }
return true;
} }
/** /**
...@@ -228,4 +230,28 @@ class ExcelImporter ...@@ -228,4 +230,28 @@ class ExcelImporter
return $this->errorColumn; return $this->errorColumn;
} }
/**
* 对比不同的数据,返回是否有不同
* @param array $list
* @param array $data
* @return bool
*/
public static function checkDiffVal(array $list, array $data)
{
foreach ($list as $key => $val) {
if (isset($data[$key]) && $data[$key]) {
if (is_array($val)) {
if (self::checkDiffVal($val, $data[$key])) {
return true;
}
} else {
if ($list[$key] !== $data[$key]) {
return true;
}
}
}
}
return false;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment