You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
ALTER TABLE ` sys_user ` MODIFY COLUMN ` user_type ` varchar ( 10 ) DEFAULT ' sys_user ' COMMENT ' 用户类型( sys_user系统用户) ' AFTER ` nick_name ` ;
UPDATE ` sys_user ` SET ` nick_name ` = ' 疯狂的狮子Li ' , ` user_type ` = ' sys_user ' , ` email ` = ' crazyLionLi@163.com ' WHERE ` user_id ` = 1 ;
UPDATE ` sys_user ` SET ` user_name ` = ' lionli ' , ` nick_name ` = ' 疯狂的狮子Li ' , ` user_type ` = ' sys_user ' , ` email ` = ' crazyLionLi@163.com ' WHERE ` user_id ` = 2 ;
UPDATE ` sys_user ` SET ` nick_name ` = ' 本部门及以下 密码666666 ' , ` user_type ` = ' sys_user ' , ` password ` = ' $2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne ' WHERE ` user_id ` = 3 ;
UPDATE ` sys_user ` SET ` nick_name ` = ' 仅本人 密码666666 ' , ` user_type ` = ' sys_user ' , ` password ` = ' $2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne ' WHERE ` user_id ` = 4 ;