| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 
							- <?php
 
- namespace App\Model;
 
- use Illuminate\Database\Eloquent\Model;
 
- /**
 
-  * 交车单
 
-  * Class Unit
 
-  * @package App\Models
 
-  */
 
- class DeliveryNote extends Model
 
- {
 
-     protected $table = "delivery_note"; //指定表
 
-     const CREATED_AT = 'crt_time';
 
-     const UPDATED_AT = 'upd_time';
 
-     protected $dateFormat = 'U';
 
-     const STATE_ZERO = 0;
 
-     const STATE_ONE = 1;
 
-     public static $name = [
 
-         self::STATE_ZERO => '已保存',
 
-         self::STATE_ONE => '已交车',
 
-     ];
 
-     public function getBreakAttribute($value)
 
-     {
 
-         return json_decode($value, true);
 
-     }
 
-     public function getBreakMarkAttribute($value)
 
-     {
 
-         return json_decode($value, true);
 
-     }
 
-     public function getProjectIdAttribute($value)
 
-     {
 
-         return json_decode($value, true);
 
-     }
 
- }
 
 
  |