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.
17 lines
371 B
17 lines
371 B
package BaseRoleService
|
|
|
|
type Rpc struct{} //服务对象
|
|
|
|
/*
|
|
//获取单条
|
|
rpc GetBaseRole (ModelArg) returns (Reply) {}
|
|
//增加
|
|
rpc AddBaseRole (ModelArg) returns (Reply) {}
|
|
//批量删除
|
|
rpc DeleteBaseRole (DeleteIdsArg) returns (Reply) {}
|
|
//修改
|
|
rpc UpdateBaseRole (ModelArg) returns (Reply) {}
|
|
//查询(分页)
|
|
rpc PageBaseRole (QueryArg) returns (Reply) {}
|
|
*/
|