package entity import ( "git.sxidc.com/go-framework/baize/framework/core/domain" ) type Entity interface { domain.Object GenerateID() error GetID() string ForCreate() error ForDelete() error ForUpdate() error }