entity.go 237 B

12345678910111213141516
  1. package entity
  2. import (
  3. "git.sxidc.com/go-framework/baize/framework/core/domain"
  4. )
  5. // Entity 领域实体接口
  6. type Entity interface {
  7. domain.Object
  8. // GenerateID 生成ID
  9. GenerateID() error
  10. // GetID 获取ID
  11. GetID() string
  12. }