url标签

This commit is contained in:
ap 2022-03-28 18:58:54 +08:00
parent 935e75468c
commit 880c3ff0de

View File

@ -0,0 +1,22 @@
import { Provide } from '@midwayjs/decorator';
import {
CoolController,
BaseController,
CoolUrlTag,
TagTypes,
} from '@cool-midway/core';
/**
* URL打标签
*/
@Provide()
@CoolController({
api: [],
entity: '',
pageQueryOp: () => {},
})
@CoolUrlTag({
key: TagTypes.ignoreToken,
value: [],
})
export class DemoAppTagController extends BaseController {}