123456789101112131415161718192021 |
- <?php
- namespace app\youzan\model;
- class OrderPay extends Base
- {
- protected $schema = [
- 'id' =>'int',
- 'tid' =>'varchar',
- 'real_payment' =>'decimal',
- 'total_fee' =>'decimal',
- 'payment' =>'decimal',
- 'transaction' =>'text',
- 'post_fee' =>'decimal',
- 'deduction_pay' =>'decimal',
- 'deduction_real_pay' =>'decimal',
- 'phase_payments' =>'text',
- 'pay_type' =>'int',
- 'addtime' =>'datetime',
- ];
- }
|