add:域名管理first commit
This commit is contained in:
22
catch/domain/support/contract/DomainActionInterface.php
Normal file
22
catch/domain/support/contract/DomainActionInterface.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CatchAdmin [Just Like ~ ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: JaguarJack [ njphper@gmail.com ]
|
||||
// +----------------------------------------------------------------------
|
||||
namespace catchAdmin\domain\support\contract;
|
||||
|
||||
interface DomainActionInterface
|
||||
{
|
||||
public function getList(array $params);
|
||||
|
||||
public function store(array $params);
|
||||
|
||||
public function delete(array $params);
|
||||
|
||||
public function read(array $params);
|
||||
}
|
24
catch/domain/support/contract/DomainRecordInterface.php
Normal file
24
catch/domain/support/contract/DomainRecordInterface.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CatchAdmin [Just Like ~ ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: JaguarJack [ njphper@gmail.com ]
|
||||
// +----------------------------------------------------------------------
|
||||
namespace catchAdmin\domain\support\contract;
|
||||
|
||||
interface DomainRecordInterface
|
||||
{
|
||||
public function getList(array $params);
|
||||
|
||||
public function store(array $params);
|
||||
|
||||
public function delete(array $params);
|
||||
|
||||
public function read(array $params);
|
||||
|
||||
public function update(array $params);
|
||||
}
|
Reference in New Issue
Block a user