Last active
June 23, 2020 15:04
-
-
Save dilanasslan/9421f3aba8c72e1350014a0688519ae8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) Huawei Technologies Co., Ltd. 2019-2019. All rights reserved. | |
* Generated by the CloudDB ObjectType compiler. DO NOT EDIT! | |
*/ | |
package com.huawei.films.model; | |
import com.huawei.agconnect.cloud.database.ObjectTypeInfo; | |
import java.util.Arrays; | |
public class ObjectTypeInfoHelper { | |
private final static int FORMAT_VERSION = 1; | |
private final static int OBJECT_TYPE_VERSION = 15; | |
public static ObjectTypeInfo getObjectTypeInfo() { | |
ObjectTypeInfo objectTypeInfo = new ObjectTypeInfo(); | |
objectTypeInfo.setFormatVersion(FORMAT_VERSION); | |
objectTypeInfo.setObjectTypeVersion(OBJECT_TYPE_VERSION); | |
objectTypeInfo.setObjectTypes(Arrays.asList(FilmTb.class)); | |
return objectTypeInfo; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment