mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-18 18:02:50 +00:00
16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
import { BaseService, Service, Permission } from "@/core";
|
|
|
|
@Service("base/sys/department")
|
|
class SysDepartment extends BaseService {
|
|
@Permission("order")
|
|
order(data: any) {
|
|
return this.request({
|
|
url: "/order",
|
|
method: "POST",
|
|
data
|
|
});
|
|
}
|
|
}
|
|
|
|
export default SysDepartment;
|