- debug output in createWaybillOn3rdProviders

- disable ELM in CreateWaybillOnProviders.
This commit is contained in:
gazebo
2018-12-25 15:17:23 +08:00
parent 7cc9486570
commit 46f96fada8
4 changed files with 67 additions and 0 deletions

27
business/model/message.go Normal file
View File

@@ -0,0 +1,27 @@
package model
const (
MessageTypeStore = 1
)
const (
MessageStatusNew = 0
MessageStatusSendAllSuccess = 1
MessageStatusSendSuccess = 2
MessageStatusSendAllFailed = 3
MessageStatusRead = 4
)
type Message struct {
ModelIDCULD
Type int8
Title string
Content string
}
type MessageStatus struct {
ModelIDCULD
MessageID int
StoreID int
Status int8
}