You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
324 B
20 lines
324 B
<?php
|
|
|
|
namespace We7\Table\Mc;
|
|
|
|
class Groups extends \We7Table {
|
|
protected $tableName = 'mc_groups';
|
|
protected $primaryKey = 'groupid';
|
|
protected $field = array(
|
|
'uniacid',
|
|
'title',
|
|
'credit',
|
|
'isdefault'
|
|
);
|
|
protected $default = array(
|
|
'uniacid' => 0,
|
|
'title' => '',
|
|
'credit' => 0,
|
|
'isdefault' => 0
|
|
);
|
|
}
|