You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
815 B
26 lines
815 B
2 years ago
|
#namespace("clearDataBase")
|
||
|
#sql("clearAll")
|
||
|
truncate table t_base_class;
|
||
|
truncate table t_base_graduation;
|
||
|
truncate table t_base_organization;
|
||
|
truncate table t_import_student_by_excel;
|
||
|
truncate table t_import_teacher_by_excel;
|
||
|
truncate table t_person_duty_charge;
|
||
|
truncate table t_sys_account_mount;
|
||
|
truncate table t_transfer_apply;
|
||
|
truncate table t_sys_loginperson;
|
||
|
truncate table t_base_app_visiable;
|
||
|
#end
|
||
|
|
||
|
#sql("set_install_area")
|
||
|
update t_base_global set global_value=? where global_code='install_area'
|
||
|
#end
|
||
|
|
||
|
#sql("setPwd")
|
||
|
update t_sys_loginperson set original_pwd=?,pwd=?,pwdmd5=? where login_name=?
|
||
|
#end
|
||
|
|
||
|
#sql("getAreaByCityId")
|
||
|
select * from t_dm_area where city_id=?
|
||
|
#end
|
||
|
#end
|