outlay(支出).sql 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. -- =============================================
  2. -- 程序编写: Jeff
  3. -- 版 本: V 1.0
  4. -- 建立日期: 2015-05-18
  5. -- 功能说明: outlay支出;
  6. -- 备 注: ;
  7. -- 修改日期:
  8. -- 修改说明:
  9. -- =============================================
  10. set ansi_nulls on
  11. go
  12. set quoted_identifier on
  13. go
  14. set ansi_padding on
  15. go
  16. --支出详情表;
  17. if not exists(select * from dbo.sysobjects where id = object_id(N'Outlay') and objectproperty(id,'IsTable') = 1)
  18. begin
  19. create table [dbo].[Outlay](
  20. [olid] [int] identity(1,1) not null, /* 支出id */
  21. [olname] [nvarchar](24) not null, /* 支出项目 */
  22. [olmoney] [nvarchar](24) not null, /* 支出金额 */
  23. [oldate] [nvarchar](24) null, /* 支出日期 */
  24. [olbz] [varchar](max) NULL, /* 支出备注 */
  25. [renyuan1] [varchar](24) NULL, /* 人员1-取款人 */
  26. [renyuan2] [varchar](24) NULL, /* 人员2-经手人 */
  27. [financecheck] [nvarchar](10) NULL, /* 财务审核 */
  28. [oltime] [nvarchar](12) NULL, /* 支出时间 */
  29. [photo] [image] NULL, /* 取款人 发票\收据\合同相片 */
  30. [financecheck2] [nvarchar](50) NULL, /* 财务审核2 */
  31. [financecheck3] [nvarchar](50) NULL, /* 财务审核3 */
  32. [hasphoto] [bit] default(0) NULL /* 是否有相片 */
  33. ) on [primary]
  34. end
  35. go
  36. --支出根类别表;
  37. if not exists(select * from dbo.sysobjects where id = object_id(N'OutlayRootConf') and objectproperty(id,'IsTable') = 1)
  38. begin
  39. create table [dbo].[OutlayRootConf](
  40. [olrcid] [int] identity(1,1) not null, -- 支出根类别id;
  41. [olrcname] [nvarchar](24) not null -- 支出根类别名;
  42. constraint [PK_OutlayRootConf] primary key clustered
  43. (
  44. [olrcid]
  45. )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary],
  46. )on [primary]
  47. end
  48. go
  49. --支出子类别表;
  50. if not exists(select * from dbo.sysobjects where id = object_id(N'OutlaySubConf') and objectproperty(id,'IsTable') = 1)
  51. begin
  52. create table [dbo].[OutlaySubConf](
  53. [olsrid] [int] not null, -- 支出根类别id;
  54. [olscid] [int] identity(1,1) not null, -- 支出子类别id;
  55. [olscname] [nvarchar](24) not null, -- 支出子类别名;
  56. constraint [PK_OutlaySubConf] primary key clustered
  57. (
  58. [olscid]
  59. )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary],
  60. )on [primary]
  61. end
  62. go
  63. alter table OutlaySubConf
  64. with check add constraint [FK_OutlaySubConf] foreign key(olsrid)
  65. references OutlayRootConf (olrcid)
  66. go
  67. drop table [OutlaySubConf]
  68. drop table [OutlayRootConf]