12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- namespace app\admin\model;
- use think\Model;
- class Order extends Model
- {
-
-
- // 表名
- protected $table = 'order';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'integer';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- protected $updateTime = false;
- protected $deleteTime = false;
- // 追加属性
- protected $append = [
- 'status_text',
- 'paytime_text'
- ];
-
-
- public function getStatusList()
- {
- return ['0' => __('Status 0'), '1' => __('Status 1')];
- }
- public function getStatusTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
- $list = $this->getStatusList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- public function getPaytimeTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['paytime']) ? $data['paytime'] : '');
- return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;
- }
- protected function setPaytimeAttr($value)
- {
- return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);
- }
- public function active()
- {
- return $this->belongsTo('Active', 'active_id', 'id', [], 'LEFT')->setEagerlyType(0);
- }
- public function user()
- {
- return $this->belongsTo('User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
- }
- public function student()
- {
- return $this->belongsTo('Userstudent', 'student_id', 'id', [], 'LEFT')->setEagerlyType(0);
- }
- public function school()
- {
- return $this->belongsTo('School', 'student.school_id', 'id', [], 'LEFT')->setEagerlyType(0);
- }
- public function classes()
- {
- return $this->belongsTo('Classes', 'student.classes_id', 'id', [], 'LEFT')->setEagerlyType(0);
- }
- }
|