28 lines
1.0 KiB
Go
28 lines
1.0 KiB
Go
|
package subject
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func getWarehouseValue(val string) string {
|
||
|
return fmt.Sprintf("%s.%s", prefixes.Warehouse, val)
|
||
|
}
|
||
|
|
||
|
var Warehouse = struct {
|
||
|
CreateOutboundRequest string
|
||
|
UpdateOutboundRequestLogistic string
|
||
|
CancelOutboundRequest string
|
||
|
GetConfiguration string
|
||
|
FindOne string
|
||
|
FindByCondition string
|
||
|
Distinct string
|
||
|
Count string
|
||
|
}{
|
||
|
CreateOutboundRequest: getWarehouseValue("create_outbound_request"),
|
||
|
UpdateOutboundRequestLogistic: getWarehouseValue("update_outbound_request_logistic_info"),
|
||
|
CancelOutboundRequest: getWarehouseValue("cancel_outbound_request"),
|
||
|
GetConfiguration: getWarehouseValue("get_configuration"),
|
||
|
FindOne: getWarehouseValue("find_one"),
|
||
|
FindByCondition: getWarehouseValue("find_all_by_condition"),
|
||
|
Distinct: getWarehouseValue("distinct"),
|
||
|
Count: getWarehouseValue("count"),
|
||
|
}
|