20240318 开车报告 总结
This commit is contained in:
parent
52f38ffafb
commit
a12d814876
|
@ -3,6 +3,7 @@ delete from Sys_Menu where MenuId='E4DD3689-0A72-43A5-8058-34C14D1FA4B0'
|
|||
delete from Sys_ButtonToMenu where MenuId='E4DD3689-0A72-43A5-8058-34C14D1FA4B0'
|
||||
go
|
||||
|
||||
|
||||
CREATE TABLE [dbo].[TestRun_MonthReport](
|
||||
[MonthReportId] [nvarchar](50) NOT NULL,
|
||||
[ProjectId] [nvarchar](50) NULL,
|
||||
|
@ -28,6 +29,7 @@ CREATE TABLE [dbo].[TestRun_MonthReport](
|
|||
[NextMonthDrivingCost] [nvarchar](1000) NULL,
|
||||
[ProblemsMeasures] [nvarchar](2000) NULL,
|
||||
[SolvedProblems] [nvarchar](2000) NULL,
|
||||
[PushPerson] [nvarchar](1000) NULL,
|
||||
CONSTRAINT [PK_TestRun_MonthReport] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[MonthReportId] ASC
|
||||
|
@ -114,10 +116,11 @@ GO
|
|||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'需要项目经理、项目主管、相关部门以及用户解决的问题' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TestRun_MonthReport', @level2type=N'COLUMN',@level2name=N'SolvedProblems'
|
||||
GO
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'开车月报告表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TestRun_MonthReport'
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'推送相关人员' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TestRun_MonthReport', @level2type=N'COLUMN',@level2name=N'PushPerson'
|
||||
GO
|
||||
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'开车月报告表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TestRun_MonthReport'
|
||||
GO
|
||||
|
||||
CREATE TABLE [dbo].[TestRun_MonthReportItem](
|
||||
[MonthReportItemId] [nvarchar](50) NOT NULL,
|
||||
|
|
Loading…
Reference in New Issue