| 1234567891011121314151617181920 |
- <?php
- namespace app\common\model;
- class PaymentChannelModel extends BaseModel
- {
- protected $table = 'erp_payment_channel';
- protected function genSchema(array $schema)
- {
- // TODO: Implement genSchema() method.
- }
- public function findAll() {
- return $this->where('is_delete', 0)->order("id", "desc")->select();
- }
- }
|