12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace app\common\model\wechat;
- use app\common\model\article\Article;
- use app\common\model\BaseModel;
- /**
- * Class WechatReply
- * @package app\common\model\wechat
- * @author zfy
- * @day 2020-04-24
- */
- class WechatNews extends BaseModel
- {
- /**
- * @return string
- * @author zfy
- * @day 2020-03-30
- */
- public static function tablePk(): string
- {
- return 'wechat_news_id';
- }
- /**
- * @return string
- * @author zfy
- * @day 2020-03-30
- */
- public static function tableName(): string
- {
- return 'wechat_news';
- }
- /**
- * @param $val
- * @return mixed
- * @author zfy
- * @day 2020-04-24
- */
- public function getDataAttr($val)
- {
- return json_decode($val, true);
- }
- /**
- * @param $val
- * @return false|string
- * @author zfy
- * @day 2020-04-24
- */
- public function setDataAttr($val)
- {
- return json_encode($val);
- }
- /**
- * 一对多关联
- * @return \think\model\relation\BelongsTo
- * @author Qinii
- */
- public function article()
- {
- return $this->hasMany(Article::class ,'wechat_news_id','wechat_news_id')
- ->field('article_id,title,author,image_input,synopsis,wechat_news_id');
- }
- }
|