| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- class DDEmployee extends Model
- {
- protected $guarded = [];
- protected $table = "dd_employee"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const qx_zero = 0;
- const qx_one = 1;
- const type_one = 1; //浙江
- const type_two = 2; //杭州
- const type = [
- self::type_one => '浙江星科源新材料有限公司',
- self::type_two => '杭州星科源新材料有限公司',
- ];
- const type_redis = [
- self::type_one => 'ZJXKYACCESSTOKENKEY',
- self::type_two => 'HZXKYACCESSTOKENKEY',
- ];
- }
|