USE [ECTEST]
|
GO
|
|
|
|
|
INSERT INTO [Sys_Dictionary]([Name] ,[DicType] ,[LastUpdateTime] ,[Operator] ,[MeanValue]) VALUES ('ÕÅ','Ó¡Ë¢µ¥Î»',getdate(),'¹ÜÀíÔ±',1)
|
INSERT INTO [Sys_Dictionary]([Name] ,[DicType] ,[LastUpdateTime] ,[Operator] ,[MeanValue]) VALUES ('±¾','Ó¡Ë¢µ¥Î»',getdate(),'¹ÜÀíÔ±',2)
|
INSERT INTO [Sys_Dictionary]([Name] ,[DicType] ,[LastUpdateTime] ,[Operator] ,[MeanValue]) VALUES ('²á','Ó¡Ë¢µ¥Î»',getdate(),'¹ÜÀíÔ±',3)
|
INSERT INTO [Sys_Dictionary]([Name] ,[DicType] ,[LastUpdateTime] ,[Operator] ,[MeanValue]) VALUES ('Ö»','Ó¡Ë¢µ¥Î»',getdate(),'¹ÜÀíÔ±',4)
|
|
go
|
|
--2021.09.10 Ôö¼Ó±¸×¢
|
alter table [OA_Kaipiaoshenqing]
|
add [remark] nvarchar(250) null
|
|
|
--¸üÐÂÊý¾Ý×Öµä EC_¿ªÆ±ÉêÇ룬¹ÜÀíÔ±µÇ¼ºǫ́
|
-- ɾ³ý £¨EC_¿ªÆ±ÉêÇ롪¡ª δÉêÇ룩
|
-- Ð޸ģ¨ÒÑÉêÇ롪¡ªÎ´¿ªÆ±£©
|
|
go
|
|
--2021.09.13
|
--¸üÐÂÊý¾Ý×Öµä Ó¡Ë¢µ¥Î»£¬¹ÜÀíÔ±µÇ¼ºǫ́
|
-- ÐÂÔö £¨Ó¡Ë¢µ¥Î»¡ª¡ª ÕÅ¡¢±¾¡¢²á¡¢Ö»£©
|
-- Öµ£¨1¡¢ 2¡¢ 3¡¢ 4£©
|
|
|
--2021.09.15 Ôö¼ÓÓ¡Ë¢ÊýÁ¿µ¥Î»
|
alter table [EC_OrderExtend]
|
add [printunit] [int] NULL
|
|
go
|
|
update [EC_OrderExtend] set [printunit]=1
|
|
go
|
|
ALTER TABLE [dbo].[EC_OrderExtend] ADD CONSTRAINT [DF_EC_OrderExtend_printunit] DEFAULT ((1)) FOR [printunit]
|
|
go
|
|
--¸üд洢¹ý³Ì[sp_EC_OrderBasic_Search_Seller] £¬¶©µ¥²éѯsql
|
--¸üд洢¹ý³Ìsp_EC_OrderExtend_Insert£¬sp_EC_OrderExtend_Update£¬ ¶©µ¥À©Õ¹sql
|