7 lines
189 B
Go
7 lines
189 B
Go
|
package gmodel
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
func (d *LdapDepartmentModel)GetList(ctx context.Context,page,pageSize int,sort string)(resp []LdapDepartment,total int64,err error){
|
||
|
return nil, 0, nil
|
||
|
}
|