CustomSendStats.php 546 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Modules\OfficialAccount\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CustomSendStats extends Model
  5. {
  6. protected $tables = 'custom_send_stats';
  7. protected $fillable = ['distribution_channel_id','date','push_user_num','click_num','amount','success_pay_num','success_pay_rate','from'];
  8. static function customSendStatsByChannelAndFrom($distribution_channel_id,$from)
  9. {
  10. return self::where(['distribution_channel_id'=>$distribution_channel_id,'from'=>$from])->first();
  11. }
  12. }