voucher/internal/biz/bo/cmb_bo.go

16 lines
236 B
Go

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