Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
jump_hm_warehouse
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
毛勇泽
jump_hm_warehouse
Commits
2501db33
Commit
2501db33
authored
Jan 22, 2024
by
ning
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
构建表单独的类
parent
21712b0e
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
43 行增加
和
1 行删除
+43
-1
NativeSql.ets
common/src/main/ets/db/sql/NativeSql.ets
+43
-1
没有找到文件。
common/src/main/ets/db/sql/NativeSql.ets
View file @
2501db33
...
...
@@ -112,6 +112,9 @@ export class NativeSql {
return count_sql;
}
/**
* 单位信息表
*/
static getDwInfoTable(): string {
const dw_sql =
`create table if not exists TAB_BZGL_KNZY_APP_BGDW(
...
...
@@ -128,6 +131,9 @@ export class NativeSql {
return dw_sql;
}
/**
* 管理单位表
*/
static getGldwTable(): string {
const gldw_sql =
`create table if not exists TAB_BZGL_KNZY_APP_BGDDW(
...
...
@@ -139,6 +145,9 @@ export class NativeSql {
return gldw_sql;
}
/**
* 货架信息表
*/
static getHjInfoTable(): string {
const hj_sql = `create table if not exists TAB_BZGL_KNZY_APP_HJB(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -153,6 +162,9 @@ export class NativeSql {
return hj_sql;
}
/**
* 货位规划表
*/
static getHwghTable(): string {
const hwgh_sql = `create table if not exists HW_PROJECT_TABLE(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -163,6 +175,9 @@ export class NativeSql {
return hwgh_sql;
}
/**
* 货位信息表
*/
static getHwInfoTable(): string {
const hw_sql = `create table if not exists tab_bzgl_knzy_app_hwb(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -179,6 +194,9 @@ export class NativeSql {
return hw_sql;
}
/**
* 库房信息表
*/
static getKfInfoTable(): string {
const kf_sql = `create table if not exists TAB_BZGL_KNZY_APP_DWKF(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -191,6 +209,9 @@ export class NativeSql {
return kf_sql;
}
/**
* 区域信息表
*/
static getQyInfoTable(): string {
const qy_sql = `create table if not exists TAB_BZGL_KNZY_APP_QYB(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -204,6 +225,9 @@ export class NativeSql {
return qy_sql;
}
/**
* 扫描信息表
*/
static getSmInfoTable(): string {
const scan_sql = `create table if not exists SCAN_LOG_TABLE(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -214,6 +238,9 @@ export class NativeSql {
return scan_sql;
}
/**
* 物资出入库表
*/
static getWzcrkTable(): string {
const wzcrk_sql = `create table if not exists TAB_BZGL_KNZY_APP_WZCRK(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -246,6 +273,9 @@ export class NativeSql {
}
/**
* 物资出入库明细表
*/
static getWzcrkmxTable(): string {
const wzcrkmx_sql = `create table if not exists TAB_BZGL_KNZY_APP_WZCRKMX(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -260,6 +290,9 @@ export class NativeSql {
return wzcrkmx_sql;
}
/**
* 物资代码表
*/
static getWzdmTable(): string {
const wzdm_sql = `create table if not exists TAB_XTWH_JCSJ_WZDM(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -276,6 +309,9 @@ export class NativeSql {
return wzdm_sql;
}
/**
* 物资号型融合表
*/
static getWzhxdmTable(): string {
const wzhxdm_sql = `create table if not exists TAB_XTWH_JCSJ_WZHXDM(
"GUID" TEXT NOT NULL,
...
...
@@ -295,6 +331,9 @@ export class NativeSql {
return wzhxdm_sql;
}
/**
* 系统配置表
*/
static getXtpzInfoTable(): string {
const sysConfig_sql = `create table if not exists SYSCONFIG_TABLE(
"APPID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -322,6 +361,9 @@ export class NativeSql {
return sysConfig_sql;
}
/**
* 意见反馈表
*/
static getYjfkTable(): string {
const yjfk_sql = `create table if not exists YJFAK_TABLE(
"GUID" TEXT NOT NULL PRIMARY KEY,
...
...
@@ -333,7 +375,7 @@ export class NativeSql {
}
/**
* 视图
* 视图
-导入导出
*/
static getDrdcView(): string {
let sql_val = `create view if not exists view_dr_dc as SELECT
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论