| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace app\common\model;
- class CreditCardConfigModel extends BaseModel
- {
- protected $table = 'erp_credit_card_config';
- protected function genSchema(array $schema)
- {
- // TODO: Implement genSchema() method.
- }
- public function getStage6Attr($value)
- {
- return json_decode($value);
- }
- public function getStage9Attr($value)
- {
- return json_decode($value);
- }
- public function getStage12Attr($value)
- {
- return json_decode($value);
- }
- public function getStage24Attr($value)
- {
- return json_decode($value);
- }
- public function getStage36Attr($value)
- {
- return json_decode($value);
- }
- }
|