23 lines
509 B
PHP
23 lines
509 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Biz_settle_static_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_biz_settle_static';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
//其它费用类型
|
|
public function other_price_type(){
|
|
$array = [
|
|
0 => '共同承担',
|
|
1 => '狸车承担',
|
|
2 => '合伙人承担'
|
|
];
|
|
return $array;
|
|
}
|
|
}
|