Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Name ¶
type Name struct { ID int64 `datastore:"-" datastore_key:""` // supported type: string, int64, *datastore.Key Created time.Time `datastore:"created"` // supported indexer tags word: e/equal(Default), l/like, p/prefix, // TODO s/suffix Desc string `datastore:"description" indexer:"l"` Desc2 string `datastore:"description2" indexer:"p"` Done bool `datastore:"done"` Count int `datastore:"count"` PriceList []int `datastore:"priceList"` Indexes []string `datastore:"indexes"` }
Name 拡張インデックスあり
type Task ¶
type Task struct { ID int64 `datastore:"-" datastore_key:""` // supported type: string, int64, *datastore.Key Desc string `datastore:"description"` Created time.Time `datastore:"created"` Done bool `datastore:"done"` Done2 bool `datastore:"done2"` Count int `datastore:"count"` Count64 int64 `datastore:"count64"` NameList []string `datastore:"nameList"` Proportion float64 `datastore:"proportion"` Flag Flag `datastore:"flag"` // NG }
Task 拡張インデックスなし
Click to show internal directories.
Click to hide internal directories.