102 lines
2.8 KiB
PHP
102 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
use App\Constants\Common\CouponCode;
|
|
use Hyperf\Collection\Collection;
|
|
use Hyperf\DbConnection\Model\Model;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property int $coupon_type
|
|
* @property string $amount
|
|
* @property string $ratio
|
|
* @property int $is_admin_edit
|
|
* @property int $status
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
*/
|
|
class CouponTemplate extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'coupon_template';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
protected array $guarded = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['id' => 'integer', 'coupon_type' => 'integer', 'is_admin_edit' => 'integer', 'status' => 'integer'];
|
|
|
|
const string CREATED_AT = 'create_time';
|
|
const string UPDATED_AT = 'update_time';
|
|
|
|
/**
|
|
* @param int $id
|
|
* @return CouponTemplate|\Hyperf\Database\Model\Model|array|null
|
|
*/
|
|
public function getInfoById(int $id): CouponTemplate|\Hyperf\Database\Model\Model|array|null
|
|
{
|
|
return $this->find($id);
|
|
}
|
|
|
|
|
|
/**
|
|
* 获取所有数据
|
|
* @param array $ids
|
|
* @return array
|
|
*/
|
|
public function getDataByIds(array $ids): array
|
|
{
|
|
$data = $this->whereIn('id',$ids)->get();
|
|
if (empty($data)){
|
|
return [];
|
|
}
|
|
|
|
$res = [];
|
|
foreach ($data->toArray() as $one)
|
|
{
|
|
$res[$one['id']] = $one;
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
/**
|
|
* @param int $userId
|
|
* @return Collection
|
|
*/
|
|
public function getNoUseCouponByUserId(int $userId): Collection
|
|
{
|
|
return $this
|
|
->join('user_coupon', function ($join) use ($userId) {
|
|
$join->on('user_coupon.coupon_template_id', '=', 'coupon_template.id')
|
|
->where('user_coupon.user_id', '=', $userId)
|
|
->where('user_coupon.status', '=', CouponCode::COUPON_STATUS_UNUSED)
|
|
->where('validity_start_time', '<=', date('Y-m-d H:i:s'))
|
|
->where('validity_end_time', '>=', date('Y-m-d H:i:s'))
|
|
->select([
|
|
'coupon_template.coupon_type',
|
|
'coupon_template.amount',
|
|
'coupon_template.ratio',
|
|
'user_coupon.id',
|
|
'user_coupon.coupon_template_id',
|
|
'user_coupon.coupon_name',
|
|
'user_coupon.status',
|
|
'user_coupon.validity_start_time',
|
|
'user_coupon.validity_end_time',
|
|
]);
|
|
})
|
|
->get();
|
|
}
|
|
}
|