- elm callback basic.

This commit is contained in:
gazebo
2018-06-14 17:50:58 +08:00
parent 4854395ef3
commit ad1a6ab5c4
12 changed files with 273 additions and 48 deletions

View File

@@ -0,0 +1,12 @@
package models
type ELMOrder struct {
Id int
OrderId string `orm:"size(50);unique;null"`
Data string `orm:"type(text);null"`
Type int `orm:"null"`
}
func (e *ELMOrder) TableName() string {
return "elemeorder"
}