| 12345678910111213141516171819202122232425262728 | <?php/** * GamePayShowModel.php UTF-8 * 支付显示 * * @date    : 2019/8/27 20:05 * * @license 这不是一个自由软件,未经授权不许任何使用和传播。 * @author  : dengcongshuai <dcs@huosdk.com> * @version : HUOSDK 8.0 */namespace huo\model\game;use huo\model\common\CommonModel;class GamePayShowModel extends CommonModel {    protected $name = 'game_pay_show';    /**     * 关联game表     *     * @return mixed     */    public function game() {        return $this->belongsTo('huo\model\game\GameModel', 'app_id')->field('id,name game_name,pay_show');    }}
 |