|
|
@@ -13,5 +13,12 @@ class Fee extends DataScopeBaseModel
|
|
|
protected $dateFormat = 'U';
|
|
|
const IS_UES = 1;//启用
|
|
|
|
|
|
- public static $field = ['title','id','code','is_use','parent_id'];
|
|
|
+ public static $field = ['title','id','code','is_use','parent_id','is_other'];
|
|
|
+
|
|
|
+ const IS_OTHER_ZERO = 0;
|
|
|
+ const IS_OTHER_ONE = 1;
|
|
|
+ const IS_OTHER = [
|
|
|
+ self::IS_OTHER_ZERO => '否',
|
|
|
+ self::IS_OTHER_ONE => '是',
|
|
|
+ ];
|
|
|
}
|