1234567891011121314151617 |
- <?php
- namespace Modules\CpManage\Models;
- use Catch\Base\CatchModel as Model;
- class DuanJuCpSubscribeMonthStatisticData extends Model
- {
- protected $table = 'duanju_cp_subscribe_month_statistic_data';
- protected $fillable = [
- 'id', 'month', 'book_num', 'final_amount', 'cp_name', 'final_state', 'final_time', 'created_at', 'updated_at',
- ];
- }
|