# Functions
GetObjFieldToInt64 object(interface{}) 의 필드값을 int64 로 리턴
Parameters: - obj: 대상 object interface{} - key: 찾을 키 이름 Return: - int64: 필드가 있는경우 int64 value - bool: 필드존재여부 true: 필드있음, false:필드없음.
GetObjFieldToString object(interface{}) 의 필드값을 string 으로 리턴
Parameters: - obj: 대상 object interface{} - key: 찾을 키 이름 Return: - string: 필드가 있는경우 string value - bool: 필드존재여부 true: 필드있음, false:필드없음.
SetObjFieldToInt64 object(interface{}) 의 int64 값을 저장
Parameters: - obj: 대상 object interface{} - key: 찾을 키 이름 - value: 저장할 값 int64 Return: - bool: 필드존재여부 true: 필드있음, false:필드없음.
SetObjFieldToString object(interface{}) 의 string 값을 저장
Parameters: - obj: 대상 object interface{} - key: 찾을 키 이름 - value: 저장할 값 string Return: - bool: 필드존재여부 true: 필드있음, false:필드없음.