|
@@ -275,4 +275,54 @@ class NewsService extends AbstractServiceClient implements NewsServiceInterface
|
|
|
{
|
|
|
return $this->__request(__FUNCTION__, $data);
|
|
|
}
|
|
|
+
|
|
|
+ //20250324 通知,公告,消息
|
|
|
+ public function getNoticeList(array $data)
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+ public function getNoticeInfo(array $data)
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+ public function addNotice(array $data): array
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+ public function updateNotice(array $data): array
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+ public function deleteNotice(array $data): array
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+ public function getMSG(array $data)
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function getComplaintList(array $data)
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function getComplaintInfo(array $data)
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function addComplaint(array $data): array
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+ public function updateComplaint(array $data): array
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+ public function deleteComplaint(array $data): array
|
|
|
+ {
|
|
|
+ return $this->__request(__FUNCTION__, $data);
|
|
|
+ }
|
|
|
+ //20250324 通知,公告,消息
|
|
|
}
|