1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace addons\unishop\model;
- use addons\unishop\extend\Hashids;
- use think\Model;
- class Ads extends Model
- {
-
- protected $name = 'unishop_ads';
-
- protected $autoWriteTimestamp = 'int';
-
- protected $createTime = 'createtime';
- protected $updateTime = 'updatetime';
-
- public function getImageAttr($value) {
- return Config::getImagesFullUrl($value);
- }
-
- public function getProductIdAttr($value) {
- return Hashids::encodeHex($value);
- }
- }
|