예제 #1
0
파일: EntityMap.go 프로젝트: quintans/goSQL
func NewLinkNav(fks coll.Collection, o interface{}) *LinkNav {
	this := new(LinkNav)
	if fks != nil && fks.Size() != 0 {
		this.foreignKey = fks
	}
	this.object = o
	return this
}