package
com.projectConstant;
import
android.R.string;
import
android.os.Environment;
public
class
ProjectConstant {
public
static
String ProjectDir = Environment.getExternalStorageDirectory().getPath() +
"/xinyu_school/"
;
public
static
String projectDBDir = ProjectDir +
"database"
;
public
static
String projectImageDir = ProjectDir +
"image"
;
public
static
String HISTORYTYPE_BUYING =
"1"
;
public
static
String HISTORYTYPE_BOUGHT =
"2"
;
public
static
String HISTORYTYPE_STORE =
"3"
;
public
static
String projectDBDirName =
"/xinyu_school/database/"
;
public
static
String DB_PRODUCT =
"product_db.db"
;
public
static
String DB_PRODUCTTABLE =
"product"
;
public
static
String DB_PARENT =
"parent"
;
public
static
String DB_PICTURENAME =
"picturename"
;
public
static
String DB_PRODUCTNAME =
"productname"
;
public
static
String DB_PRICE =
"price"
;
public
static
String DB_NUMBER =
"number"
;
public
static
String DB_TOADDR =
"ToAddr_db.db"
;
public
static
String DB_TOADDR_TABLE =
"ToAddr"
;
public
static
String DB_TONAME =
"toname"
;
public
static
String DB_TOADDRESS =
"toaddress"
;
public
static
String DB_TOTEL =
"totel"
;
public
static
String DB_TOCHECKED =
"checked"
;
public
static
String DB_TODEFAULT =
"defaulted"
;
public
static
String DB_HISTORY =
"history.db"
;
public
static
String DB_HSTRYTABLE =
"historytable"
;
public
static
String DB_HISTORY_TYPE =
"type"
;
public
static
String DB_CLIENT_ID=
"admin"
;
}