[ 'month_price', 'quarter_price', 'year_price' ], ]); } /** * 月价 */ public function getMonthPriceAttr($value,$row) { return bcmul($row['price'],$row['month_discount'],2); } /** * 季价 */ public function getQuarterPriceAttr($value,$row) { return bcmul($row['price'],$row['quarter_discount'],2); } /** * 年价 */ public function getYearPriceAttr($value,$row) { return bcmul($row['price'],$row['year_discount'],2); } function Role(){ return $this->hasOne('UserRole','id','role_id')->bind([ 'name'=>'role_name', 'max_send_msg_count'=>'max_send_msg_count', 'max_friend_count'=>'max_friend_count', 'max_group_join_count'=>'max_group_join_count', 'max_gourp_create_count'=>'max_gourp_create_count' ]); } }