Files
MBTI_wang/api/app/model/ProfitSharingRule.php

17 lines
322 B
PHP

<?php
namespace app\model;
use think\Model;
class ProfitSharingRule extends Model
{
protected $name = 'profit_sharing_rules';
protected $autoWriteTimestamp = 'int';
protected $createTime = 'createdAt';
protected $updateTime = 'updatedAt';
protected $type = [
'receivers' => 'json',
];
}