Commit 111f4d15 authored by 孙磊's avatar 孙磊

update

Signed-off-by: 孙磊's avatarsunlei <sunlei@romens.cn>
parent 5beca137
...@@ -19,6 +19,8 @@ use yii\data\ActiveDataProvider; ...@@ -19,6 +19,8 @@ use yii\data\ActiveDataProvider;
* @property int $STATUS 状态,1:启用 * @property int $STATUS 状态,1:启用
* @property string $REMARK 备注 * @property string $REMARK 备注
* @property int $SORT 排序 * @property int $SORT 排序
* @property string $UPDATE_TIME 修改时间
* @property string $UPDATE_USER_CODE 修改人账号
*/ */
class ShopRbacRole extends BaseModel class ShopRbacRole extends BaseModel
{ {
...@@ -42,6 +44,8 @@ class ShopRbacRole extends BaseModel ...@@ -42,6 +44,8 @@ class ShopRbacRole extends BaseModel
[['NAME'], 'string', 'max' => 30], [['NAME'], 'string', 'max' => 30],
[['PID'], 'string', 'max' => 6], [['PID'], 'string', 'max' => 6],
[['REMARK'], 'string', 'max' => 255], [['REMARK'], 'string', 'max' => 255],
[['UPDATE_TIME'], 'safe'],
[['UPDATE_USER_CODE'],'string']
]; ];
} }
...@@ -59,6 +63,8 @@ class ShopRbacRole extends BaseModel ...@@ -59,6 +63,8 @@ class ShopRbacRole extends BaseModel
'STATUS' => 'Status', 'STATUS' => 'Status',
'REMARK' => 'Remark', 'REMARK' => 'Remark',
'SORT' => 'Sort', 'SORT' => 'Sort',
'UPDATE_TIME' => 'Update Time',
'UPDATE_USER_CODE' => 'Update User Code',
]; ];
} }
//获取角色列表 //获取角色列表
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment