post.ts 509 B

12345678910111213141516171819202122232425
  1. import { PageQuery, BaseEntity } from '@/api/interface/index'
  2. export interface PostVO extends BaseEntity {
  3. postId: number | string
  4. postCode: string
  5. postName: string
  6. postSort: number
  7. status: string
  8. remark: string
  9. }
  10. export interface PostForm {
  11. postId: number | string | undefined
  12. postCode: string
  13. postName: string
  14. postSort: number
  15. status: string
  16. version: number
  17. remark: string
  18. }
  19. export interface PostQuery extends PageQuery {
  20. postCode: string
  21. postName: string
  22. status: string
  23. }