您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
340 B

  1. import {Uuid} from '@theoryofnekomata/uuid-buffer';
  2. export type LogParameter = {
  3. id: number,
  4. logId: number,
  5. key: string,
  6. value: string,
  7. }
  8. export type Log = {
  9. id: number,
  10. subjectUserId: Uuid,
  11. subjectUsername: string,
  12. action: string,
  13. createdAt: Date,
  14. }
  15. export type LogParameterData = Pick<LogParameter, 'key' | 'value'>;