ntk-cms-api
Version:
Ntk Cms Api And Model For Typscript
21 lines (20 loc) • 715 B
TypeScript
import { BaseEntity } from '../base/baseEntity';
export declare class CoreUserSupportAccessModel extends BaseEntity<number> {
linkSiteId: number;
linkUserId: number;
moduleName: string;
moduleEntityName: string;
accessDeleteRow: boolean;
accessWatchRow: boolean;
accessCountRow: boolean;
accessEditRow: boolean;
accessAddRow: boolean;
accessExportFile: boolean;
accessWatchRowOtherSiteId: boolean;
accessWatchRowOtherCreatedBy: boolean;
accessCountRowOtherSiteId: boolean;
accessCountRowOtherCreatedBy: boolean;
accessEditRowOtherSiteId: boolean;
accessEditRowOtherCreatedBy: boolean;
accessDeleteRowOtherCreatedBy: boolean;
}