JMethodCall.go 258 字节
Newer Older
P
Phodal HUANG 已提交
1 2 3 4 5 6 7 8
package models

type JMethodCall struct {
	Pkg         string
	Dlz         string
	MethodName  string
	//tableOps    map[string]string
}
P
Phodal HUANG 已提交
9 10

func (call *JMethodCall) AddMethodCall (targetType string, method string) {
P
Phodal HUANG 已提交
11
	//fmt.Println(targetType, "->", method)
P
Phodal HUANG 已提交
12 13
}