first commit
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
|
||||
class Carmis extends BaseModel
|
||||
{
|
||||
|
||||
use SoftDeletes;
|
||||
|
||||
protected $table = 'carmis';
|
||||
|
||||
/**
|
||||
* 未售出
|
||||
*/
|
||||
const STATUS_UNSOLD = 1;
|
||||
|
||||
/**
|
||||
* 已售出
|
||||
*/
|
||||
const STATUS_SOLD = 2;
|
||||
|
||||
/**
|
||||
* 获取组建映射
|
||||
*
|
||||
* @return array
|
||||
*
|
||||
* @author assimon<ashang@utf8.hk>
|
||||
* @copyright assimon<ashang@utf8.hk>
|
||||
* @link http://utf8.hk/
|
||||
*/
|
||||
public static function getStatusMap()
|
||||
{
|
||||
return [
|
||||
self::STATUS_UNSOLD => admin_trans('carmis.fields.status_unsold'),
|
||||
self::STATUS_SOLD => admin_trans('carmis.fields.status_sold')
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 关联商品
|
||||
*
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*
|
||||
* @author assimon<ashang@utf8.hk>
|
||||
* @copyright assimon<ashang@utf8.hk>
|
||||
* @link http://utf8.hk/
|
||||
*/
|
||||
public function goods()
|
||||
{
|
||||
return $this->belongsTo(Goods::class, 'goods_id');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user