當前位置: 首頁>>代碼示例>>Java>>正文


Java Entity.setHasKeepSections方法代碼示例

本文整理匯總了Java中de.greenrobot.daogenerator.Entity.setHasKeepSections方法的典型用法代碼示例。如果您正苦於以下問題:Java Entity.setHasKeepSections方法的具體用法?Java Entity.setHasKeepSections怎麽用?Java Entity.setHasKeepSections使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在de.greenrobot.daogenerator.Entity的用法示例。


在下文中一共展示了Entity.setHasKeepSections方法的14個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: addDepartment

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void addDepartment(Schema schema){
    Entity department = schema.addEntity("DepartmentEntity");
    department.setTableName("Department");
    department.setClassNameDao("DepartmentDao");
    department.setJavaPackage(entityPath);

    department.addIdProperty().autoincrement();
    department.addIntProperty("departId").unique().notNull().index();
    department.addStringProperty("departName").unique().notNull().index();
    department.addIntProperty("priority").notNull();
    department.addIntProperty("status").notNull();

    department.addIntProperty("created").notNull();
    department.addIntProperty("updated").notNull();

    department.setHasKeepSections(true);
}
 
開發者ID:ccfish86,項目名稱:sctalk,代碼行數:18,代碼來源:GreenDaoGenerator.java

示例2: addGroupInfo

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void addGroupInfo(Schema schema) {
    Entity groupInfo = schema.addEntity("GroupEntity");
    groupInfo.setTableName("GroupInfo");
    groupInfo.setClassNameDao("GroupDao");
    groupInfo.setJavaPackage(entityPath);

    groupInfo.addIdProperty().autoincrement();
    groupInfo.addIntProperty("peerId").unique().notNull();
    groupInfo.addIntProperty("groupType").notNull();
    groupInfo.addStringProperty("mainName").notNull();
    groupInfo.addStringProperty("avatar").notNull();
    groupInfo.addIntProperty("creatorId").notNull();
    groupInfo.addIntProperty("userCnt").notNull();

    groupInfo.addStringProperty("userList").notNull();
    groupInfo.addIntProperty("version").notNull();
    groupInfo.addIntProperty("status").notNull();
    groupInfo.addIntProperty("created").notNull();
    groupInfo.addIntProperty("updated").notNull();

    groupInfo.setHasKeepSections(true);
}
 
開發者ID:ccfish86,項目名稱:sctalk,代碼行數:23,代碼來源:GreenDaoGenerator.java

示例3: addSessionInfo

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void addSessionInfo(Schema schema){
    Entity sessionInfo = schema.addEntity("SessionEntity");
    sessionInfo.setTableName("Session");
    sessionInfo.setClassNameDao("SessionDao");
    sessionInfo.setJavaPackage(entityPath);

    //point to userId/groupId need sessionType 區分
    sessionInfo.addIdProperty().autoincrement();
    sessionInfo.addStringProperty("sessionKey").unique().notNull(); //.unique()
    sessionInfo.addIntProperty("peerId").notNull();
    sessionInfo.addIntProperty("peerType").notNull();

    sessionInfo.addIntProperty("latestMsgType").notNull();
    sessionInfo.addIntProperty("latestMsgId").notNull();
    sessionInfo.addStringProperty("latestMsgData").notNull();

    sessionInfo.addIntProperty("talkId").notNull();
    sessionInfo.addIntProperty("created").notNull();
    sessionInfo.addIntProperty("updated").notNull();

    sessionInfo.setHasKeepSections(true);
}
 
開發者ID:ccfish86,項目名稱:sctalk,代碼行數:23,代碼來源:GreenDaoGenerator.java

示例4: addAccountTable

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void addAccountTable(Schema schema) {

        Entity table = schema.addEntity("Green_AccountBean");
        table.setHasKeepSections(true);
        table.setTableName(AccountTable.ACCOUNT_TABLE);
        table.implementsSerializable();

        table.addLongProperty(AccountTable.UID).primaryKey();
        table.addStringProperty(AccountTable.USER_NAME);
        table.addStringProperty(AccountTable.USER_PWD);
        table.addStringProperty(AccountTable.COOKIE);
        table.addStringProperty(AccountTable.OAUTH_TOKEN);
        table.addLongProperty(AccountTable.OAUTH_TOKEN_EXPIRES_TIME);
        table.addStringProperty(AccountTable.ACCESS_TOKEN_HACK);
        table.addLongProperty(AccountTable.ACCESS_TOKEN_HACK_EXPIRES_TIME);
        table.addStringProperty(AccountTable.G_SID);
        table.addIntProperty(AccountTable.NAVIGATION_POSITION);
        table.addStringProperty(AccountTable.USER_INFO_JSON);
    }
 
開發者ID:andforce,項目名稱:iBeebo,代碼行數:20,代碼來源:GreenDaoGen.java

示例5: addUserInfo

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void addUserInfo(Schema schema) {
    Entity userInfo = schema.addEntity("UserEntity");
    userInfo.setTableName("UserInfo");
    userInfo.setClassNameDao("UserDao");
    userInfo.setJavaPackage(entityPath);

    userInfo.addIdProperty().autoincrement();
    userInfo.addIntProperty("peerId").unique().notNull().index();
    userInfo.addIntProperty("gender").notNull();
    userInfo.addStringProperty("mainName").notNull();
    // 這個可以自動生成pinyin
    userInfo.addStringProperty("pinyinName").notNull();
    userInfo.addStringProperty("realName").notNull();
    userInfo.addStringProperty("avatar").notNull();
    userInfo.addStringProperty("phone").notNull();
    userInfo.addStringProperty("email").notNull();
    userInfo.addIntProperty("departmentId").notNull();

    userInfo.addIntProperty("status").notNull();
    userInfo.addIntProperty("created").notNull();
    userInfo.addIntProperty("updated").notNull();

    userInfo.setHasKeepSections(true);

    //todo 索引還沒有設定
    // 一對一 addToOne 的使用
    // 支持protobuf
    // schema.addProtobufEntity();
}
 
開發者ID:ccfish86,項目名稱:sctalk,代碼行數:30,代碼來源:GreenDaoGenerator.java

示例6: createUserEntity

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
public static Entity createUserEntity(Schema schema) {
    Entity user = schema.addEntity("User");
    user.addIdProperty();
    user.addStringProperty("name").notNull();
    user.addStringProperty("avatar").notNull();
    user.setHasKeepSections(true);

    return user;
}
 
開發者ID:Kamshak,項目名稱:BrainPhaser,代碼行數:10,代碼來源:BrainphaserDaoGenerator.java

示例7: addMsg

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
/**
 * Msg
 *
 * @param schema
 */
private static void addMsg(Schema schema) {
    Entity entity = schema.addEntity("Msg");
    entity.implementsSerializable();
    entity.setHasKeepSections(true);
    entity.addLongProperty("id").primaryKey();
    entity.addStringProperty("title");
    entity.addStringProperty("user");
    entity.addStringProperty("content");
}
 
開發者ID:ourbeehive,項目名稱:AndPlug,代碼行數:15,代碼來源:AppDaoGen.java

示例8: addAtUsersTable

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void addAtUsersTable(Schema schema) {

        Entity table = schema.addEntity("Green_AtUsersBean");
        table.setHasKeepSections(true);
        table.setTableName(AtUsersTable.TABLE_NAME);
        table.implementsSerializable();

        table.addStringProperty(AtUsersTable.ACCOUNTID);
        table.addStringProperty(AtUsersTable.AT_USERID);
        table.addStringProperty(AtUsersTable.AT_USER_INFO_JSON);
    }
 
開發者ID:andforce,項目名稱:iBeebo,代碼行數:12,代碼來源:GreenDaoGen.java

示例9: addStatusTable

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void addStatusTable(Schema schema) {

        Entity table = schema.addEntity("Green_TimeLineStatus");
        table.setHasKeepSections(true);
        table.setTableName(TimeLineStatusTable.TABLE_NAME);
        table.implementsSerializable();

        table.addIntProperty(TimeLineStatusTable.ID);
        table.addStringProperty(TimeLineStatusTable.ACCOUNTID);
        table.addStringProperty(TimeLineStatusTable.MBLOGID);
        table.addStringProperty(TimeLineStatusTable.JSONDATA);

    }
 
開發者ID:andforce,項目名稱:iBeebo,代碼行數:14,代碼來源:GreenDaoGen.java

示例10: addNote

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void addNote(Schema schema) {
    Entity note = schema.addEntity("Brand");
    note.addIdProperty();
    note.addStringProperty("brandName").notNull();
    note.addStringProperty("brandId").notNull();
    note.addDateProperty("brandImageUri");
    note.addStringProperty("brandInfos");
    note.setHasKeepSections(true);
    note.setSkipGeneration(true);
}
 
開發者ID:cymcsg,項目名稱:UltimateAndroid,代碼行數:11,代碼來源:DbDaoGenerator.java

示例11: generateBellesDao

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void generateBellesDao(Schema schema) {
    Entity entity = schema.addEntity("LocalBelle");
    entity.addLongProperty("id").notNull();
    entity.addLongProperty("time").notNull();
    entity.addIntProperty("type").notNull();
    entity.addStringProperty("url").notNull();
    entity.setHasKeepSections(true);
}
 
開發者ID:zhangdi0917,項目名稱:SexyBelle,代碼行數:9,代碼來源:Main.java

示例12: generateSeries

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void generateSeries(Schema schema) {
    Entity entity = schema.addEntity("Series");
    entity.addIntProperty("type").notNull();
    entity.addStringProperty("title").notNull();
    entity.setHasKeepSections(true);
    entity.implementsSerializable();
}
 
開發者ID:zhangdi0917,項目名稱:SexyBelle,代碼行數:8,代碼來源:Main.java

示例13: createSqliteMaster

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
protected void createSqliteMaster() {
    Entity entity = schema.addEntity("SqliteMaster");
    entity.setSkipTableCreation(true);
    entity.setHasKeepSections(true);
    entity.addStringProperty("type");
    entity.addStringProperty("name");
    entity.addStringProperty("tableName").columnName("tbl_name");
    entity.addLongProperty("rootpage");
    entity.addStringProperty("sql");
}
 
開發者ID:itsmechlark,項目名稱:greendao-cipher,代碼行數:11,代碼來源:TestDaoGenerator.java

示例14: generateCollectedBelle

import de.greenrobot.daogenerator.Entity; //導入方法依賴的package包/類
private static void generateCollectedBelle(Schema schema) {
    Entity entity = schema.addEntity("CollectedBelle");
    entity.addStringProperty("url").notNull().primaryKey();
    entity.addLongProperty("time").notNull();
    entity.setHasKeepSections(true);
}
 
開發者ID:zhangdi0917,項目名稱:SexyBelle,代碼行數:7,代碼來源:Main.java


注:本文中的de.greenrobot.daogenerator.Entity.setHasKeepSections方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。