voucher/internal/biz/bo/cmb_bo.go

15 lines
209 B
Go

package bo
import "voucher/internal/biz/vo"
type CmbRequestBo struct {
FuncName vo.CmbFuncName
BizContent string
}
type CmbResponseBo struct {
RespCode string
RespMsg string
BizContent string
}