weaver-hrm-organization/sqlupgrade/SQLServer/sql202212120503.sql

12 lines
833 B
Transact-SQL

delete from jcl_org_cardaccess
GO
INSERT INTO JCL_ORG_CARDACCESS (type_id, type_name, status, all_people, superior, all_superior, custom, delete_type, creator, create_time, update_time) VALUES(1, '个人信息', 1, 0, 0, 0, NULL, 0, 1, GETDATE(), GETDATE())
GO
INSERT INTO JCL_ORG_CARDACCESS (type_id, type_name, status, all_people, superior, all_superior, custom, delete_type, creator, create_time, update_time) VALUES(3, '工作信息', 1, 0, 0, 0, NULL, 0, 1, GETDATE(), GETDATE())
GO
INSERT INTO JCL_ORG_CARDACCESS (type_id, type_name, status, all_people, superior, all_superior, custom, delete_type, creator, create_time, update_time) VALUES(-1, '基本信息', 1, 0, 0, 0, NULL, 0, 1, GETDATE(), GETDATE())
GO
update jcl_org_cardbutton set name = '详细信息', url = '/spa/hrm/index_mobx.html#/main/hrm/card/cardInfo/${id}' where id = 1
GO