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