This commit is contained in:
wanyongkang
2020-10-29 10:49:51 +08:00
parent ab88e8d34d
commit c7f9c073d9
4 changed files with 484 additions and 1 deletions

19
app/api/model/Finance.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
/*
* @Descripttion:
* @version:
* @Author: kangkang
* @Date: 2020-10-22 16:13:41
* @LastEditors: kangkang
* @LastEditTime: 2020-10-28 17:21:00
*/
namespace app\api\model;
use fastphp\base\Model;
class Finance extends Model
{
protected $table = 'finance';
}