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