// +---------------------------------------------------------------------- namespace app\common\model\user; use app\common\model\BaseModel; use app\common\repositories\store\CityAreaRepository; class CashLog extends BaseModel { /** * @return string * @author xaboy * @day 2020-03-30 */ public static function tablePk(): string { return 'id'; } /** * @return string * @author xaboy * @day 2020-03-30 */ public static function tableName(): string { return 'cash_log'; } }