123456789101112131415161718192021 |
- <?php
- namespace app\cxinv\model;
- class TotalTips extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'depart_id' =>'int',
- 'depart_ment' =>'varchar',
- 'tips' =>'decimal',
- 'month' =>'int',
- 'year' =>'int',
- 'total' =>'decimal',
- 'th_total' =>'decimal',
- 'profit' =>'decimal',
- 'rate' =>'decimal',
- 'prate' =>'decimal',
- 'updatetine' =>'datetime',
- ];
- }
|