无需多言,直接撸代码
class Zhuanjia extends \yii\db\ActiveRecord{ public static function tableName() { return 'tableName'; } /** * @inheritdoc */ public function rules() { return [ [['name', 'type', 'phone'], 'required'], [['status'], 'integer'], [['name'], 'string', 'max' => 60], [['type', 'phone'], 'string', 'max' => 255] ]; } public function attributeLabels() { return [ 'id' => 'ID', 'name' => 'Name', 'type' => 'Type', 'phone' => 'Phone', 'status' => 'Status', ]; }}