* 优惠券使用记录 */ namespace app\allwin\model; use think\Model; use think\facade\Log; class CouponLog extends Model{ protected $pk = 'id'; protected $table = 'ai_allwin_coupon_log'; //读取某个消费记录信息 public static function getLog(array $condition){ return self::where($condition)->order('id desc')->find(); } }