- debug output in createWaybillOn3rdProviders
- disable ELM in CreateWaybillOnProviders.
This commit is contained in:
27
business/model/message.go
Normal file
27
business/model/message.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user