TagPurchaseState.js 386 B

1234567891011121314151617181920212223
  1. import BaseCurdEntry from './BaseCurdEntry'
  2. import tagPurchaseStateApi from '@@/api/TagPurchaseStateApi'
  3. export default class TagPurchaseState extends BaseCurdEntry {
  4. id
  5. name
  6. constructor (id, name) {
  7. super()
  8. this.id = id
  9. this.name = name
  10. }
  11. static get $$name () {
  12. return 'TagPurchaseState'
  13. }
  14. static get $$api () {
  15. return tagPurchaseStateApi
  16. }
  17. }