仓库初始化

This commit is contained in:
2025-08-13 10:43:56 +08:00
commit e8f9b46680
5180 changed files with 859303 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<?php
namespace Yzh\Model;
interface ResponseInterface
{
/**
* 获取业务状态码
*/
public function getCode();
/**
* 设置业务状态码
* @return self
*/
public function setCode($code);
/**
* 获取业务状态码描述信息
*/
public function getMessage();
/**
* 设置业务状态码描述信息
* @return self
*/
public function setMessage($message);
/**
* 获取数据对象
* @return
*/
public function getData();
/**
* 设置数据对象
* @para $data
* @return self
*/
public function setData($data);
}