12345678910111213141516171819202122232425 |
- drop table x_workday;
- create table x_workday
- (
- TDate VARCHAR(10) not null,
- TYear VARCHAR(4) not null,
- TType VARCHAR(80) ,
- TInfo VARCHAR(80) ,
- constraint PK_x_workday primary key (TDate)
- );
- create index IX_x_workday_TYear on x_workday(TYear);
- create index IX_x_workday_TType on x_workday(TType);
- INSERT INTO t_menu (KeyID,Menuname,Parentid,Treepath,Treelevel,Menuurl,Menudesc,Isleaf,IsShow,MenuID,SType,SortID)
- VALUES ('0606','初始化节假日','06','/0/06/0606/','0','/myconsole/complaint/workday/initData','','true','true','complaint.workday.initData','menu','6.00');
- INSERT INTO t_menu (KeyID,Menuname,Parentid,Treepath,Treelevel,Menuurl,Menudesc,Isleaf,IsShow,MenuID,SType,SortID)
- VALUES ('0607','管理节假日','06','/0/06/0607/','0','/myconsole/complaint/workday/workDay','','true','true','complaint.workday.workDay','menu','7.00');
-
-
|