12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package xorm
- type BeforeInsertProcessor interface {
- BeforeInsert()
- }
- type BeforeUpdateProcessor interface {
- BeforeUpdate()
- }
- type BeforeDeleteProcessor interface {
- BeforeDelete()
- }
- type BeforeSetProcessor interface {
- BeforeSet(string, Cell)
- }
- type AfterSetProcessor interface {
- AfterSet(string, Cell)
- }
- type AfterInsertProcessor interface {
- AfterInsert()
- }
- type AfterUpdateProcessor interface {
- AfterUpdate()
- }
- type AfterDeleteProcessor interface {
- AfterDelete()
- }
|