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
43e610b2
Commit
43e610b2
authored
Jan 17, 2024
by
ning
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
创建库房信息数据服务
parent
eb1d6d44
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
46 行增加
和
0 行删除
+46
-0
KfInfoDao.ets
common/src/main/ets/db/dao/KfInfoDao.ets
+45
-0
Bzhx.ts
common/src/main/ets/entity/Bzhx.ts
+1
-0
没有找到文件。
common/src/main/ets/db/dao/KfInfoDao.ets
View file @
43e610b2
import relationalStore from '@ohos.data.relationalStore'
import { KfInfo } from '../../entity/KfInfo'
import BaseTable, { ValueType } from '../BaseTable'
/**
* 库房信息数据服务
*/
export class KfInfoDao extends BaseTable<KfInfo> {
toBean(cursor: relationalStore.ResultSet): KfInfo {
let info: KfInfo = {
guid: cursor.getString(cursor.getColumnIndex("guid")),
kfdm: cursor.getString(cursor.getColumnIndex("kfdm")),
kfmc: cursor.getString(cursor.getColumnIndex("kfmc")),
kflx: cursor.getString(cursor.getColumnIndex("kflx")),
yxj: cursor.getLong(cursor.getColumnIndex("yxj")),
isdefault: cursor.getString(cursor.getColumnIndex("isdefault"))
};
return info;
}
getEntityId(item: KfInfo): ValueType {
return item.guid;
}
getColumnId(): string {
return "guid";
}
getTableColumns(): string[] {
return ['guid', 'kfdm', 'kfmc', 'kflx', 'yxj', 'isdefault'];
}
getCreateTableSql(): string {
const kf_sql = `create table if not exists TAB_BZGL_KNZY_APP_DWKF(
"GUID" TEXT NOT NULL PRIMARY KEY,
"KFDM" TEXT,
"KFMC" TEXT,
"KFLX" TEXT,
"YXJ" INTEGER,
"ISDEFAULT" TEXT
)`;
return kf_sql;
}
}
\ No newline at end of file
common/src/main/ets/entity/Bzhx.ts
View file @
43e610b2
/**
/**
* hdc uninstall com.junmp.store_management
* BZ号型信息
* BZ号型信息
*/
*/
export
interface
Bzhx
{
export
interface
Bzhx
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论