Documentation
¶
Index ¶
- Variables
- type IAsset
- type UserAsset
- func (object *UserAsset) Clone() IAsset
- func (object *UserAsset) GetAssetDirtyFlagKey() string
- func (object *UserAsset) GetAssetKey() string
- func (object *UserAsset) GetHashKey() string
- func (object *UserAsset) Marshal() (s string, err error)
- func (object *UserAsset) New() IAsset
- func (object *UserAsset) String() string
- func (object *UserAsset) TableName() string
- func (object *UserAsset) Unmarshal(s string) (err error)
Constants ¶
This section is empty.
Variables ¶
View Source
var (
Util = &util{}
)
Functions ¶
This section is empty.
Types ¶
type IAsset ¶
type IAsset interface { // 获取Hash Key GetHashKey() string // 获取资产Key GetAssetKey() string // 获取资产脏标志Key GetAssetDirtyFlagKey() string // 序列化 Marshal() (s string, err error) // 反序列化 Unmarshal(s string) (err error) // 新建对象 New() IAsset // 克隆对象 Clone() IAsset }
资产接口
Click to show internal directories.
Click to hide internal directories.