ShippingTemplateRegion.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\common\model\store\shipping;
  12. use app\common\model\BaseModel;
  13. class ShippingTemplateRegion extends BaseModel
  14. {
  15. /**
  16. * Author:Qinii
  17. * Date: 2020/5/6
  18. * Time: 14:20
  19. * @return string
  20. */
  21. public static function tablePk(): string
  22. {
  23. return 'shipping_template_region_id';
  24. }
  25. /**
  26. * Author:Qinii
  27. * Date: 2020/5/6
  28. * Time: 14:20
  29. * @return string
  30. */
  31. public static function tableName(): string
  32. {
  33. return 'shipping_template_region';
  34. }
  35. public function getCityIDsAttr($value,$data)
  36. {
  37. $city_id = explode('/',$data['city_id']);
  38. $result = [];
  39. if(is_array($city_id)){
  40. foreach ($city_id as $v){
  41. $result[] = [City::where('city_id',$v)->value('parent_id') ?? 0,intval($v) ];
  42. }
  43. }
  44. return $result;
  45. }
  46. public function setCityIdAttr($value)
  47. {
  48. return '/'.( implode('/',$value)).'/';
  49. }
  50. }