You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
258 B

9 months ago
9 months ago
9 months ago
  1. // 语录管理
  2. export interface classticInterface {
  3. key: string,
  4. id?: number,
  5. header: string,
  6. text: string,
  7. descr: string
  8. }
  9. export interface comLinkInterface {
  10. key: string,
  11. id?: number,
  12. linktext: string,
  13. linkurl: string,
  14. descr: string
  15. }