收藏 分享(赏)

数据库开发文档.doc

上传人:Facebook 文档编号:7192922 上传时间:2019-05-09 格式:DOC 页数:51 大小:1.01MB
下载 相关 举报
数据库开发文档.doc_第1页
第1页 / 共51页
数据库开发文档.doc_第2页
第2页 / 共51页
数据库开发文档.doc_第3页
第3页 / 共51页
数据库开发文档.doc_第4页
第4页 / 共51页
数据库开发文档.doc_第5页
第5页 / 共51页
点击查看更多>>
资源描述

1、表 名 : 权 限 分 配 表 ( LZH_ACL)名称 代码 数据类型 默认值 是否为空权限控制器 controller text null权限组 ID group_id int(10) pk权限组名称 groupname Varchar(100) not null主键 contraint pk_ lzh_acl primary key (group_id)关键字说明表 名 : 广 告 管 理 表 ( LZH_AD)名称 代码 数据类型 默认值 是否为空编号 ID Id int(10) pk广告内容 content varchar(5000) not null显示开始时间 start_tim

2、e int(10) not null显示结束时间 end_time int(10) not null添加时间 add_time int(10) 0 not null广告标题 title varchar(100) not null广告类型 ad_type tinyint(4) 0 not null主键 contraint pk_ lzh_ad primary key (id)关键字说明 ad_type: 0 代表普通广告;1 代表多图广告表 名 : 地 区 管 理 表 ( LZH_AREA)名称 代码 数据类型 默认值 是否为空编号 ID Id smallint(5) pk地区根节点 reid

3、smallint(5) 0 not null地区名称 name varchar(120) not null地区子节点 sort_order smallint(5) 0 not null是否开通子域名 is_open tinyint(3) 0 not null域名 domain varchar(10) not null主键 contraint pk_ lzh_area primary key (id)关键字说明表 名 : 文 章 管 理 表 ( LZH_ARTICLE)名称 代码 数据类型 默认值 是否为空编号 ID Id int(10) pk文章标题 title varchar(50) 0 n

4、ot null文章简介 art_info varchar(255) not null文章关键字 art_keyword varchar(200) not null文章内容 art_content text not null文章作者 art_writer varchar(20) not null文章添加时间 art_time int(10) 0 not null文章类型 type_id smallint(5) not null文章跳转地址 art_url varchar(200) not null缩略图 art_img varchar(200) not null文章添加人 art_userid

5、smallint(5) not null文章分类排序 sort_order int(10) not null点击数 art_click int(10) 0 not null文章属性设置 art_set int(1) 0 not null文章属性 art_attr tinyint(4) 0 not null主键 contraint pk_lzh_article primary key (id)关键字说明 art_set: 0 代表普通; 1 代表跳转表 名 : 地 区 文 章 管 理 表 ( LZH_ARTICLE_AREA)名称 代码 数据类型 默认值 是否为空文章 id Id int(10)

6、 pk文章标题 title varchar(50) 0 not null文章简介 art_info varchar(255) not null文章关键字 art_keyword varchar(200) not null文章内容 art_content text not null文章作者 art_writer varchar(20) not null文章添加时间 art_time int(10) 0 not null文章类型 type_id smallint(5) not null文章跳转地址 art_url varchar(200) not null缩略图 art_img varchar(2

7、00) not null文章添加人 art_userid smallint(5) not null文章分类排序 sort_order int(10) not null点击数 art_click int(10) 0 not null文章属性设置 art_set int(1) 0 not null文章属性 art_attr tinyint(4) 0 not null地区 ID area_id int(10) 0 not null主键 contraint pk_ lzh_article_area primary key (id)关键字说明 art_set: 0 代表普通; 1 代表跳转表 名 : 文

8、 章 分 类 管 理 表 ( LZH_ARTICLE_CATEGORY)名称 代码 数据类型 默认值 是否为空分类 id Id smallint(6) pk分类标题 type_name varchar(40) 0 not null分类跳转路径 type_url varchar(200) not null分类关键字 type_keyword varchar(200) not null分类简介 type_info varchar(400) not null分类内容 type_content text not null分类排序 sort_order int(10) not null分类类型 type

9、_set smallint(5) 0 not null分类根节点 parent_id varchar(200) not null分类唯一标识 type_nid varchar(200) not null是否隐藏 is_hiden smallint(5) not null分类添加时间 add_time int(10) not null是否为系统默认 is_sys int(10) 0 not null模板 model char(30) not null主键 contraint pk_lzh_article_category primary key (id)关键字说明 type_set: 0 代表单

10、页;1 代表列表页 2 代表跳转页表 名 : 地 区 文 章 分 类 管 理 表 ( LZH_ ARTICLE_CATEGORY_AREA)名称 代码 数据类型 默认值 是否为空分类 id Id smallint(6) pk分类标题 type_name varchar(40) 0 not null分类跳转路径 type_url varchar(200) not null分类关键字 type_keyword varchar(200) not null分类简介 type_info varchar(400) not null分类内容 type_content text not null分类排序 so

11、rt_order int(10) not null分类类型 type_set smallint(5) 0 not null分类根节点 parent_id varchar(200) not null分类唯一标识 type_nid varchar(200) not null是否隐藏 is_hiden smallint(5) not null分类添加时间 add_time int(10) not null是否为系统默认 is_sys int(10) 0 not null地区 ID area_id int(10) 0 not null主键 contraint pk_lzh_article_catego

12、ry_area primary key (id)关键字说明 type_set: 0 代表单页;1 代表列表页 2 代表跳转页表 名 : 管 理 员 信 息 管 理 表 ( LZH_AUSERS)名称 代码 数据类型 默认值 是否为空管理员 ID Id int(11) Pk管理员用户名 user_name varchar(50) 0 not null管理员密码 user_pass varchar(50) not null所属用户组 ID u_group_id smallint(6) not null真实姓名 real_name varchar(20) not null上次登录时间 last_lo

13、g_time int(10) not null上次登录 IP last_log_ip varchar(30) not null是否禁用 is_ban int(1) 0 not null所属子站 ID area_id int(11) not null所属子站名称 area_name Varchar(10) not null是否是客服 is_kf int(10) not nullQQ qq Varchar(20) not null电话 phone Varchar(20) 0 not null密码口令 user_word Varchar(100) 0 not null主键 contraint pk_

14、lzh_ausers primary key (id)关键字说明is_ban: 0 代表不禁用;1 代表禁用;is_kf: 0 代表不是客服;1 代表是客服表 名 : 管 理 员 操 作 记 录 ( LZH_AUSER_DOLOGS)名称 代码 数据类型 默认值 是否为空编号 ID id int(10) pk操作类型 type varchar(16) not null目标 ID tid int(10) not null目标状态 tstatus tinyint(4) not null审核 IP deal_ip varchar(16) not null审核时间 deal_time int(10)

15、not null审核用户名 deal_user varchar(50) not null审核信息 deal_info varchar(200) not null主键 contraint pk_lzh_auser_dologs primary key (id)关键字说明表 名 : 自 动 投 标 设 置 管 理 表 ( LZH_AUTO_BORROW)名称 代码 数据类型 默认值 是否为空编号 ID Id int(10) Pk会员 ID uid int(10) not null最低利率 Interest_rate decimal(5,2) not null借款期限起始 duration_from

16、 tinyint(3) not null借款期限结束 duration_to tinyint(3) not null账户保留金额* account_money decimal(15,2) not null自动投标日期 end_time int(10) not null记录产生时间 add_time int(10) not nullIP add_ip Varchar(16) not null自动加满* is_auto_full int(11) not null最大投标金额 invest_money decimal(15,2) not null当前设置标志位 is_use tinyint(4) 1

17、 not null借款类型* borrow_type tinyint(4) not null最小投标金额 min_invest decimal(15,2) not null借款时间 invest_time int(10) 0 not null主键 contraint pk_lzh_auto_borrow primary key (id)关键字说明account_money: 当您账户可用余额低于该值时,将不能自动投标borrow_type:1-普通标 2-担保标 3-秒还标 4-净值标 表 名 : 借 款 信 息 管 理 表 ( LZH_BORROW_INFO)名称 代码 数据类型 默认值 是

18、否为空编号 ID Id int(10) pk借款标题 borrow_name Varchar(50) not null借款会员 ID borrow_uid int(11) not null借款期限 borrow_duration tinyint(3) not null借款金额 borrow_money decimal(15,2) not null借款利息 borrow_interest decimal(15,2) not null借款利率 borrow_interest_rate decimal(5,2) not null借款管理费 borrow_fee decimal(15,2) not n

19、ull已借款金额 has_borrow decimal(15,2) not null借款次数 borrow_times Smallint(5) 0 not null还款金额 repayment_money decimal(15,2) not null还款利息 repayment_interest decimal(15,2) not null逾期还款 expired_money decimal(15,2) not null还款方式 repayment_type tinyint(3) not null借款类型 borrow_type tinyint(3) not null借款状态 borrow_s

20、tatus tinyint(3) not null借款用途 borrow_use tinyint(3) not null借款发布时间 add_time int(10) not null借款期限 collect_day tinyint(3) not null回收时间 collect_time int(10) not null满标时间 full_time int(10) 0 not null还款时间 deadline int(10) not null初审时间 first_verify_time int(10) not null复审时间 second_verify_time int(10) not

21、null处理人 IP add_ip Varchar(16) not null借款说明 borrow_info Varchar(500) not null总还款期数 total tinyint(4) not null已还款期数 has_pay tinyint(4) not null网站垫付金额 substitute_money decimal(15,2) not null担保奖励利率 reward_vouch_rate float(5,2) not null担保奖励金额 reward_vouch_money decimal(15,2) not null奖励方式 reward_type tinyi

22、nt(3) 0 not null比例 reward_num decimal(10,2) not null金额 reward_money decimal(15,2) not null最小投资金额 borrow_min mediumint(8) not null最大投资金额 borrow_max mediumint(8) not null所属省份 province int(10) not null所属城市 city int(10) not null所属地区 area int(10) not null担保会员 vouch_member Varchar(100) not null已担保金额 has_v

23、ouch decimal(15,2) not null密码标密码 password char(32) not null是否为推荐标 is_tuijian tinyint(2) not null是否允许自动投标 can_auto tinyint(3) 1 not null是否是惠农标 is_huinong tinyint(3) 0 Not null上传文件资料 updata Varchar(3000) Not null担保公司 ID danbao int(11) Not null担保金额 vouch_money decimal(15,2) Not null待收金额 money_collect d

24、ecimal(15,2) 0.00 not null风险控制* risk_control Varchar(2000) Not null主键 contraint pk_lzh_borrow_info primary key (id)关键字说明repayment_type: 1 代表按天到期还款;2 代表按月分期还款; 3 代表按季分期还款;4 代表每月还息到期还本;borrow_type: 1 代表普通标;2 代表担保标;3 代表秒还标;4 代表净值标;5 代表抵押标;borrow_status: 0 代表初审待审核;1 代表初审未通过;2 代表初审通过,借款中;3 代表标未满,结束,流标;4

25、代表标满,复审中;5 代表复审未通过,结束;6 代表复审通过,还款中;7 代表正常完成;8 代表已逾期;9 代表网站代还完成;10 代表会员在网站代还后,逾期还款;表 名 : 借 款 锁 定 列 表 ( LZH_BORROW_INFO_LOCK)名称 代码 数据类型 默认值 是否为空borrow_info 对应的 ID id int(10) pk锁定标志位 suo int(10) not null主键 contraint pk_lzh_borrow_info_lock primary key (id)关键字说明 id 自增,详见 AppLibActionHome BorrowAction.cl

26、ass.php表 名 : 投 资 信 息 管 理 表 ( LZH_BORROW_INVESTOR)名称 代码 数据类型 默认值 是否为空编号 ID Id int(10) pk状态 status tinyint(3) 0 not null借款编号 ID borrow_id int(10) not null投资会员 ID investor_uid int(10) not null借款会员 ID borrow_uid int(10) not null充值资金池的投资金额 investor_capital decimal(15,2) not null投资利息 investor_interest dec

27、imal(15,2) not null回款资金存放池的投资金额 receive_capital decimal(15,2) not null回款利息 receive_interest decimal(15,2) not null网站垫付金额 substitute_money decimal(15,2) not null逾期金额 expired_money decimal(15,2) not null逾期利率 invest_fee decimal(15,2) not null逾期还款 paid_fee decimal(15,2) not null投资时间 add_time int(10) not

28、 null回款时间 deadline int(10) not null是否是自动投标 is_auto tinyint(3) 0 not null奖励金额 reward_money decimal(15,2) not null债权状态 debt_status tinyint(3) 0 not null债权人 id debt_uid int(11) not null主键 contraint pk_lzh_borrow_investor primary key (id)关键字说明status 1:等待复审 2:标未满,返回 3:审核未通过,返回 4:审核通过,还款中 5:正常完成 6:网站代还完成

29、7:逾期还款 debt_status:0-可以流转 1-寻求转让 2-转让完成表 名 : 新 标 提 醒 管 理 表 ( LZH_BORROW_TIP) ( 注 : 已 废 除 )表 名 : 借 款 审 核 管 理 表 ( LZH_BORROW_VERIFY)名称 代码 数据类型 默认值 是否为空借款编号 ID borrow_id int(11) pk初审处理人 deal_user mediumint(10) not null初审处理时间 deal_time int(10) not null初审处理意见 deal_info varchar(50) not null复审处理时间 deal_tim

30、e_2 int(10) not null复审处理人 deal_user_2 mediumint(10) not null复审处理意见 deal_info_2 varchar(50) not null初审处理状态 deal_status tinyint(3) not null复审处理状态 deal_status_2 tinyint(3) not null主键 contraint pk_lzh_borrow_verify primary key (borrow_id)关键字说明 表 名 : 借 款 担 保 管 理 表 ( LZH_BORROW_VOUCH)名称 代码 数据类型 默认值 是否为空编号

31、 ID Id int(10) pk担保项目 ID borrow_id int(10) not null担保人 ID uid int(10) not null担保人用户名 uname varchar(20) not null担保金额 vouch_money decimal(15,2) not null担保奖励利率 vouch_reward_rate decimal(4,2) not null担保奖励金额 vouch_reward_money decimal(15,2) not null操作者 IP add_ip varchar(16) not null担保时间 vouch_time int(11

32、) not null担保状态 status tinyint(3) 0 not null网站垫付金额 substitute_money decimal(15,2) not null回款金额 get_back decimal(15,2) not null主键 contraint pk_lzh_borrow_vouch primary key (id)关键字说明 status: 0:担保中 1:担保完成 2:担保失败 3:担保满标,还款中表 名 : 评 论 管 理 表 ( LZH_ COMMENT)名称 代码 数据类型 默认值 是否为空编号 ID Id int(11) pk会员 ID uid int

33、(10) not null用户名 uname varchar(20) not null回复 ID tid int(10) not null类型 type tinyint(4) not null评论内容 comment varchar(500) not null评论时间 add_time int(10) not null借款者回复时间 deal_time int(10) not null借款者回复 deal_info varchar(500) not null标题 name varchar(50) not null主键 contraint pk_lzh_comment primary key (

34、id)关键字说明 type 1:借款 2:捐款表 名 : 爱 心 捐 助 管 理 表 ( LZH_DONATE) ( 注 : 已 废 除 )表 名 : 现 场 认 证 管 理 表 ( LZH_FACE_APPLY)名称 代码 数据类型 默认值 是否为空编号 ID Id int(10) pk会员 ID uid int(10) not null申请时间 add_time int(10) not null处理者 IP add_ip varchar(16) not null是否通过 apply_status tinyint(3) 0 not null奖励积分 credits int(11) not n

35、ull审核人员 deal_user int(10) not null审核时间 deal_time int(10) not null备注 deal_info varchar(50) not null主键 contraint pk_lzh_face_apply primary key (id)关键字说明 apply_status:0-待审核 1-通过 2-未通过 表 名 : 快 速 借 款 留 言 管 理 表 ( LZH_FEEDBACK) ( 注 : 已 废 除 )表 名 : 友 情 链 接 管 理 表 ( LZH_FRIEND)名称 代码 数据类型 默认值 是否为空编号 ID Id int(1

36、1) pk友情链接名称 link_txt varchar(50) not null友情链接地址 link_href varchar(500) not null友情链接图片 link_img varchar(100) not null显示顺序 link_order int(1) 0 not null友情链接类型 link_type int(1) 0 not null是否前台显示 is_show int(1) 1 not null游戏 ID game_id Int(11) 0 not null游戏链接 game_name char(50) not null主键 contraint pk_lzh_f

37、riend primary key (id)关键字说明link_type:0 代表以文字形式显示;1 代表以图片形式显示;is_show: 0 代表不显示;1 代表显示;表 名 : 站 点 基 本 参 数 设 置 管 理 表 ( LZH_GLOBAL)名称 代码 数据类型 默认值 是否为空编号 ID Id smallint(6) pk参数类型 type varchar(10) not null类型说明 text text not null参数名称 name varchar(50) not null参数说明 tip varchar(200) not null参数排序 order_sn int(1

38、1) 0 not null参数代码 code varchar(20) not null是否是系统参数 is_sys tinyint(3) 0 not null主键 contraint pk_lzh_global primary key (id)关键字说明is_sys: 0 代表非系统参数(可删除);1 代表是系统参数(不允许删除);新增参数时,默认设置为非系统参数;表 名 : 居 间 方 合 同 存 档 ( LZH_HETONG)名称 代码 数据类型 默认值 是否为空编号 ID id int(11) pk缩略图 hetong_img varchar(500) not null缩略图缓存 thu

39、mb_hetong_img varchar(500) not null操作时间 add_time int(11) not null操作人 deal_user varchar(100) not null公司名称 name varchar(100) not null公司地址 dizhi varchar(200) not null公司电话 tel varchar(50) not null主键 contraint pk_lzh_hetong primary key (id)关键字说明表 名 : 站 内 信 信 息 管 理 表 ( LZH_INNER_MSG)名称 代码 数据类型 默认值 是否为空编号

40、ID Id int(11) pk会员 ID uid int(10) not null消息标题 title varchar(50) not null消息内容 msg text not null发送时间 send_time int(10) not null(是否已读)状态 status tinyint(4) 0 not null主键 contraint pk_lzh_inner_msg primary key (id)关键字说明 Status:0 代表未读;1 代表已读;表 名 : 投 资 明 细 管 理 表 ( LZH_INVESTOR_DETAIL)名称 代码 数据类型 默认值 是否为空编号

41、ID Id int(10) pk还款时间 repayment_time int(10) 0 not null借款编号 ID borrow_id int(10) not null投资编号 ID invest_id int(10)投资会员 ID investor_uid int(10) not null借款会员 ID borrow_uid int(10) not null借款总金额 capital decimal(15,2) not null利息 interest decimal(15,2) not null利息管理费 interest_fee decimal(15,2) not null状态 s

42、tatus tinyint(3) not null回款金额 receive_capital decimal(15,2) not null回款利息 receive_interest decimal(15,2) not null还款期数 sort_order tinyint(3) not null总期数 total tinyint(3) not null还款时间 deadline int(10) not null逾期罚金 expired_money decimal(15,2) not null逾期天数 expired_days tinyint(3) 0 not null催收费 call_fee d

43、ecimal(5,2) not null网站垫付金额 substitute_money decimal(15,2) not null网站垫付时间 substitute_time int(10) 0 not null主键 contraint pk_lzh_investor_detail primary key (id)关键字说明status: 0 代表还未确认通过;1 代表正常还完;2 代表提前还款;3 代表迟还;4 代表网站代还本金;5 代表逾期还款;6 代表逾期未还;7 代表复审通过,还款中; 表 名 : 投 资 积 分 奖 励 管 理 表 ( LZH_INVEST_CREDIT) ( 注

44、: 后 期 扩 展 用 )名称 代码 数据类型 默认值 是否为空编号 ID Id int(10) pk会员 ID uid int(10) not null借款编号 ID borrow_id int(10) not null投资金额 invest_money decimal(15,2) not null投资类型 invest_type tinyint(3) not null期限 duration tinyint(3) not null所获积分 get_credit decimal(15,2) not null操作时间 add_time int(10) not null操作记录 IP add_ip

45、 varchar(16) not null主键 contraint pk_lzh_invest_credit primary key (id)关键字说明 表 名 : 债 权 转 让 记 录 表 ( LZH_ INVEST_DETB)名称 代码 数据类型 默认值 是否为空编号 ID id int(10) pk债权 ID invest_id int(10) 0 not null状态 status tinyint(1) 99 not null卖方 ID sell_uid int(10) not null出售价格 transfer_price decimal(15,2) 0.00 not null总金

46、额 money decimal(15,2) 0.00 not null可转让期数 period tinyint(5) 0 not null总期数 total_period tinyint(5) 0 not null存续时间 valid int(10) 0 not null备注 remark text not null序列号 serialid varchar(15) not null撤消转让次数 cancel_times tinyint(1) 0 not null买方 ID buy_uid int(10) 0 not null买入时间 buy_time int(10) 0 not null卖方挂

47、出时间 addtime int(10) 0 not null卖方 IP Ip char(19) not null主键 contraint pk_lzh_invest_detb primary key (id)关键字说明valid=7 天status: 1-还款中 2-可转让 3-流标 4-完成remark: 1-债权人撤销 2-债权还款撤销 3-转让超时表 名 : 积 分 抽 奖 ( 废 ) ( LZH_JIFEN_CHOUJIANG)表 名 : 举 报 记 录 表 ( LZH_JUBAO)名称 代码 数据类型 默认值 是否为空编号 ID Id int(11) pk举报人 ID uid int

48、(11) not null举报人邮箱 uemail varchar(60) not null被举报人 ID b_uid int(11) not null被举报人姓名 b_uname varchar(50) not null举报原因 reason varchar(100) not null举报说明 text varchar(500) not null操作时间 add_time int(10) not null操作记录 IP add_ip varchar(16) not null主键 contraint pk_lzh_jubao primary key (id)关键字说明 表 名 : 举 报 记

49、录 表 ( LZH_KVTABLE) ( 注 : 已 废 除 )表 名 : 收 货 人 地 址 信 息 表 ( LZH_MARKET_ADDRESS)名称 代码 数据类型 默认值 是否为空编号 ID id int(10) pk收货人 ID uid int(11) not nullproid int(11) not null省 province varchar(100) not null市 city varchar(100) not null区 area varchar(100) not null地址 address varchar(300) not null备注 remark text not null填表人 IP add_ip varchar(16) not null填表时间 add_time int(11) not null主键 contraint pk_lzh_market_address primary key (id)关键字说明 proid: 未使用的字段表 名 : 商 城 商 品 列 表 ( LZH_MARKET_GOODS)名称 代码 数据类型 默认值 是否为空编号 ID id int(10) pk名称 name varchar(50) not null描述 description varchar(200) not null风格 style var

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报