1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace app\common\model;
- /**
- * 活动效果统计模型
- * @package app\common\model
- */
- class ActEffectStatistics extends BaseModel
- {
- /*活动类型 start*/
- const ACT_TYPE_GROUP_BUY = 1;//拼团活动
- const ACT_TYPE_KJ = 2;//砍价活动
- const ACT_TYPE_DISCOUNT = 3;//N件X折活动
- const ACT_TYPE_MJ_SEND = 4;//满件送活动
- const ACT_TYPE_FULL_SEND = 5;//满就送活动
- const ACT_TYPE_MIAOSHA = 9;//秒杀活动
- const ACT_TYPE_GROUP_BUY_LB = 10;//拼团裂变活动
- /*活动类型 end*/
- protected $name = 'act_effect_statistics';
- /**
- * 获取记录
- * @param int $id
- * @param array $with
- * @return static
- */
- public static function detail(int $id, array $with = [])
- {
- return static::get($id, $with);
- }
-
- }
|