摘要:
class User extends Model { #以下属性和方法都不是必须的,但是一般都要按需求定义一些 //定义关联的表名,不定义的话默认此模型关联的表为 模型名s (users) protected $table = 'user'; /******字段相关*******/ #定义主键字段名,默认是id pro... 阅读全文
posted @ 2018-12-19 16:03
孙龙-程序员
阅读(1324)
评论(0)
推荐(0)
摘要:
<?php namespace Pcb\Model; use Illuminate\Database\Eloquent\Model as Eloquent; class PcbOrder extends Eloquent { protected $connection="pcb"; protected $table = 'order'; protected $pri... 阅读全文
posted @ 2018-12-19 10:02
孙龙-程序员
阅读(605)
评论(0)
推荐(0)