- remove table elemeorder

This commit is contained in:
gazebo
2019-02-12 16:41:14 +08:00
parent 65000be3d0
commit 35db92c039
2 changed files with 54 additions and 69 deletions

View File

@@ -1,15 +0,0 @@
package legacymodel2
type Elemeorder struct {
Id int `orm:"column(id);auto"`
Orderid string `orm:"column(orderid);size(50);null;unique"`
Data string `orm:"column(data);null"`
Type int `orm:"column(type);null"`
Consignee string `orm:"column(consignee);size(32)"`
Mobile string `orm:"column(mobile);size(32)"`
OrderCreatedAt string `orm:"column(order_created_at);size(50);index"`
}
func (t *Elemeorder) TableName() string {
return "elemeorder"
}