diff --git a/infosouth-system/target/classes/META-INF/MANIFEST.MF b/infosouth-system/target/classes/META-INF/MANIFEST.MF
deleted file mode 100644
index 1f9fa9929..000000000
--- a/infosouth-system/target/classes/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,5 +0,0 @@
-Manifest-Version: 1.0
-Built-By: tiny
-Build-Jdk: 1.8.0_181
-Created-By: Maven Integration for Eclipse
-
diff --git a/infosouth-system/target/classes/META-INF/maven/cn.com.infosouth/infosouth-system/pom.properties b/infosouth-system/target/classes/META-INF/maven/cn.com.infosouth/infosouth-system/pom.properties
deleted file mode 100644
index e7662bfae..000000000
--- a/infosouth-system/target/classes/META-INF/maven/cn.com.infosouth/infosouth-system/pom.properties
+++ /dev/null
@@ -1,7 +0,0 @@
-#Generated by Maven Integration for Eclipse
-#Wed Mar 04 16:21:13 CST 2020
-version=4.1.0
-groupId=cn.com.infosouth
-m2e.projectName=infosouth-system
-m2e.projectLocation=Z\:\\ram_eclipse_proj\\amas.comac.v2\\infosouth-system
-artifactId=infosouth-system
diff --git a/infosouth-system/target/classes/META-INF/maven/cn.com.infosouth/infosouth-system/pom.xml b/infosouth-system/target/classes/META-INF/maven/cn.com.infosouth/infosouth-system/pom.xml
deleted file mode 100644
index 667bdc09f..000000000
--- a/infosouth-system/target/classes/META-INF/maven/cn.com.infosouth/infosouth-system/pom.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- amas.comac
- cn.com.infosouth
- 4.1.0
-
- 4.0.0
-
- infosouth-system
-
-
- system系统模块
-
-
-
-
-
-
- mysql
- mysql-connector-java
-
-
-
-
- cn.com.infosouth
- infosouth-common
-
-
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysConfigMapper.xml b/infosouth-system/target/classes/mapper/system/SysConfigMapper.xml
deleted file mode 100644
index 2d1599b47..000000000
--- a/infosouth-system/target/classes/mapper/system/SysConfigMapper.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark
- from sys_config
-
-
-
-
-
-
- and config_id = #{configId}
-
-
- and config_key = #{configKey}
-
-
-
-
-
-
-
-
-
-
-
- insert into sys_config (
- config_name,
- config_key,
- config_value,
- config_type,
- create_by,
- remark,
- create_time
- )values(
- #{configName},
- #{configKey},
- #{configValue},
- #{configType},
- #{createBy},
- #{remark},
- sysdate()
- )
-
-
-
- update sys_config
-
- config_name = #{configName},
- config_key = #{configKey},
- config_value = #{configValue},
- config_type = #{configType},
- update_by = #{updateBy},
- remark = #{remark},
- update_time = sysdate()
-
- where config_id = #{configId}
-
-
-
- delete from sys_config where config_id in
-
- #{configId}
-
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysDeptMapper.xml b/infosouth-system/target/classes/mapper/system/SysDeptMapper.xml
deleted file mode 100644
index 8f7aa2400..000000000
--- a/infosouth-system/target/classes/mapper/system/SysDeptMapper.xml
+++ /dev/null
@@ -1,154 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status, d.del_flag, d.create_by, d.create_time
- from sys_dept d
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- insert into sys_dept(
- dept_id,
- parent_id,
- dept_name,
- ancestors,
- order_num,
- leader,
- phone,
- email,
- status,
- create_by,
- create_time
- )values(
- #{deptId},
- #{parentId},
- #{deptName},
- #{ancestors},
- #{orderNum},
- #{leader},
- #{phone},
- #{email},
- #{status},
- #{createBy},
- sysdate()
- )
-
-
-
- update sys_dept
-
- parent_id = #{parentId},
- dept_name = #{deptName},
- ancestors = #{ancestors},
- order_num = #{orderNum},
- leader = #{leader},
- phone = #{phone},
- email = #{email},
- status = #{status},
- update_by = #{updateBy},
- update_time = sysdate()
-
- where dept_id = #{deptId}
-
-
-
- update sys_dept set ancestors =
-
- when #{item.deptId} then #{item.ancestors}
-
- where dept_id in
-
- #{item.deptId}
-
-
-
-
- update sys_dept set del_flag = '2' where dept_id = #{deptId}
-
-
-
- update sys_dept
-
- status = #{status},
- update_by = #{updateBy},
- update_time = sysdate()
-
- where dept_id in (${ancestors})
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysDictDataMapper.xml b/infosouth-system/target/classes/mapper/system/SysDictDataMapper.xml
deleted file mode 100644
index 72f220085..000000000
--- a/infosouth-system/target/classes/mapper/system/SysDictDataMapper.xml
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark
- from sys_dict_data
-
-
-
-
-
-
-
-
-
-
-
-
-
- delete from sys_dict_data where dict_code = #{dictCode}
-
-
-
- delete from sys_dict_data where dict_code in
-
- #{dictCode}
-
-
-
-
- update sys_dict_data
-
- dict_sort = #{dictSort},
- dict_label = #{dictLabel},
- dict_value = #{dictValue},
- dict_type = #{dictType},
- css_class = #{cssClass},
- list_class = #{listClass},
- is_default = #{isDefault},
- status = #{status},
- remark = #{remark},
- update_by = #{updateBy},
- update_time = sysdate()
-
- where dict_code = #{dictCode}
-
-
-
- update sys_dict_data set dict_type = #{newDictType} where dict_type = #{oldDictType}
-
-
-
- insert into sys_dict_data(
- dict_sort,
- dict_label,
- dict_value,
- dict_type,
- css_class,
- list_class,
- is_default,
- status,
- remark,
- create_by,
- create_time
- )values(
- #{dictSort},
- #{dictLabel},
- #{dictValue},
- #{dictType},
- #{cssClass},
- #{listClass},
- #{isDefault},
- #{status},
- #{remark},
- #{createBy},
- sysdate()
- )
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysDictTypeMapper.xml b/infosouth-system/target/classes/mapper/system/SysDictTypeMapper.xml
deleted file mode 100644
index 682cf054d..000000000
--- a/infosouth-system/target/classes/mapper/system/SysDictTypeMapper.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select dict_id, dict_name, dict_type, status, create_by, create_time, remark
- from sys_dict_type
-
-
-
-
-
-
-
-
-
-
-
-
-
- delete from sys_dict_type where dict_id = #{dictId}
-
-
-
- delete from sys_dict_type where dict_id in
-
- #{dictId}
-
-
-
-
- update sys_dict_type
-
- dict_name = #{dictName},
- dict_type = #{dictType},
- status = #{status},
- remark = #{remark},
- update_by = #{updateBy},
- update_time = sysdate()
-
- where dict_id = #{dictId}
-
-
-
- insert into sys_dict_type(
- dict_name,
- dict_type,
- status,
- remark,
- create_by,
- create_time
- )values(
- #{dictName},
- #{dictType},
- #{status},
- #{remark},
- #{createBy},
- sysdate()
- )
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysLogininforMapper.xml b/infosouth-system/target/classes/mapper/system/SysLogininforMapper.xml
deleted file mode 100644
index 877eaabdc..000000000
--- a/infosouth-system/target/classes/mapper/system/SysLogininforMapper.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- insert into sys_logininfor (login_name, status, ipaddr, login_location, browser, os, msg, login_time)
- values (#{loginName}, #{status}, #{ipaddr}, #{loginLocation}, #{browser}, #{os}, #{msg}, sysdate())
-
-
-
-
-
- delete from sys_logininfor where info_id in
-
- #{infoId}
-
-
-
-
- truncate table sys_logininfor
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysMenuMapper.xml b/infosouth-system/target/classes/mapper/system/SysMenuMapper.xml
deleted file mode 100644
index e6958bae0..000000000
--- a/infosouth-system/target/classes/mapper/system/SysMenuMapper.xml
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysNoticeMapper.xml b/infosouth-system/target/classes/mapper/system/SysNoticeMapper.xml
deleted file mode 100644
index 8ac06e571..000000000
--- a/infosouth-system/target/classes/mapper/system/SysNoticeMapper.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select notice_id, notice_title, notice_type, notice_content, status, create_by, create_time, update_by, update_time, remark
- from sys_notice
-
-
-
-
-
-
-
- insert into sys_notice (
- notice_title,
- notice_type,
- notice_content,
- status,
- remark,
- create_by,
- create_time
- )values(
- #{noticeTitle},
- #{noticeType},
- #{noticeContent},
- #{status},
- #{remark},
- #{createBy},
- sysdate()
- )
-
-
-
- update sys_notice
-
- notice_title = #{noticeTitle},
- notice_type = #{noticeType},
- notice_content = #{noticeContent},
- status = #{status},
- update_by = #{updateBy},
- update_time = sysdate()
-
- where notice_id = #{noticeId}
-
-
-
- delete from sys_notice where notice_id in
-
- #{noticeId}
-
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysOperLogMapper.xml b/infosouth-system/target/classes/mapper/system/SysOperLogMapper.xml
deleted file mode 100644
index 5c6d420ac..000000000
--- a/infosouth-system/target/classes/mapper/system/SysOperLogMapper.xml
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select oper_id, title, business_type, method, request_method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status, error_msg, oper_time
- from sys_oper_log
-
-
-
- insert into sys_oper_log(title, business_type, method, request_method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status, error_msg, oper_time)
- values (#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}, #{errorMsg}, sysdate())
-
-
-
-
-
- delete from sys_oper_log where oper_id in
-
- #{operId}
-
-
-
-
-
-
- truncate table sys_oper_log
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysPostMapper.xml b/infosouth-system/target/classes/mapper/system/SysPostMapper.xml
deleted file mode 100644
index 805abf46a..000000000
--- a/infosouth-system/target/classes/mapper/system/SysPostMapper.xml
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select post_id, post_code, post_name, post_sort, status, create_by, create_time, remark
- from sys_post
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- delete from sys_post where post_id in
-
- #{postId}
-
-
-
-
- update sys_post
-
- post_code = #{postCode},
- post_name = #{postName},
- post_sort = #{postSort},
- status = #{status},
- remark = #{remark},
- update_by = #{updateBy},
- update_time = sysdate()
-
- where post_id = #{postId}
-
-
-
- insert into sys_post(
- post_id,
- post_code,
- post_name,
- post_sort,
- status,
- remark,
- create_by,
- create_time
- )values(
- #{postId},
- #{postCode},
- #{postName},
- #{postSort},
- #{status},
- #{remark},
- #{createBy},
- sysdate()
- )
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysRoleDeptMapper.xml b/infosouth-system/target/classes/mapper/system/SysRoleDeptMapper.xml
deleted file mode 100644
index 593b054e0..000000000
--- a/infosouth-system/target/classes/mapper/system/SysRoleDeptMapper.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- delete from sys_role_dept where role_id=#{roleId}
-
-
-
-
-
- delete from sys_role_dept where role_id in
-
- #{roleId}
-
-
-
-
- insert into sys_role_dept(role_id, dept_id) values
-
- (#{item.roleId},#{item.deptId})
-
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysRoleMapper.xml b/infosouth-system/target/classes/mapper/system/SysRoleMapper.xml
deleted file mode 100644
index d82ca5d52..000000000
--- a/infosouth-system/target/classes/mapper/system/SysRoleMapper.xml
+++ /dev/null
@@ -1,131 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope,
- r.status, r.del_flag, r.create_time, r.remark
- from sys_role r
- left join sys_user_role ur on ur.role_id = r.role_id
- left join sys_user u on u.user_id = ur.user_id
- left join sys_dept d on u.dept_id = d.dept_id
-
-
-
- select r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status, r.del_flag, r.create_time, r.remark
- from sys_role r
-
-
-
-
-
-
-
-
-
-
-
-
-
- delete from sys_role where role_id = #{roleId}
-
-
-
- update sys_role set del_flag = '2' where role_id in
-
- #{roleId}
-
-
-
-
- update sys_role
-
- role_name = #{roleName},
- role_key = #{roleKey},
- role_sort = #{roleSort},
- data_scope = #{dataScope},
- status = #{status},
- remark = #{remark},
- update_by = #{updateBy},
- update_time = sysdate()
-
- where role_id = #{roleId}
-
-
-
- insert into sys_role(
- role_id,
- role_name,
- role_key,
- role_sort,
- data_scope,
- status,
- remark,
- create_by,
- create_time
- )values(
- #{roleId},
- #{roleName},
- #{roleKey},
- #{roleSort},
- #{dataScope},
- #{status},
- #{remark},
- #{createBy},
- sysdate()
- )
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysRoleMenuMapper.xml b/infosouth-system/target/classes/mapper/system/SysRoleMenuMapper.xml
deleted file mode 100644
index 88c33c69b..000000000
--- a/infosouth-system/target/classes/mapper/system/SysRoleMenuMapper.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysUserMapper.xml b/infosouth-system/target/classes/mapper/system/SysUserMapper.xml
deleted file mode 100644
index ce252a2f3..000000000
--- a/infosouth-system/target/classes/mapper/system/SysUserMapper.xml
+++ /dev/null
@@ -1,219 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select u.user_id, u.dept_id, u.login_name, u.user_name, u.email, u.avatar, u.phonenumber, u.sex, u.password, u.salt, u.status, u.del_flag, u.login_ip, u.login_date, u.create_time, u.remark,
- d.dept_id, d.parent_id, d.dept_name, d.order_num, d.leader, d.status as dept_status,
- r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status
- from sys_user u
- left join sys_dept d on u.dept_id = d.dept_id
- left join sys_user_role ur on u.user_id = ur.user_id
- left join sys_role r on r.role_id = ur.role_id
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- delete from sys_user where user_id = #{userId}
-
-
-
- update sys_user set del_flag = '2' where user_id in
-
- #{userId}
-
-
-
-
- update sys_user
-
- dept_id = #{deptId},
- login_name = #{loginName},
- user_name = #{userName},
- email = #{email},
- phonenumber = #{phonenumber},
- sex = #{sex},
- avatar = #{avatar},
- password = #{password},
- salt = #{salt},
- status = #{status},
- login_ip = #{loginIp},
- login_date = #{loginDate},
- update_by = #{updateBy},
- remark = #{remark},
- update_time = sysdate()
-
- where user_id = #{userId}
-
-
-
- insert into sys_user(
- user_id,
- dept_id,
- login_name,
- user_name,
- email,
- avatar,
- phonenumber,
- sex,
- password,
- salt,
- status,
- create_by,
- remark,
- create_time
- )values(
- #{userId},
- #{deptId},
- #{loginName},
- #{userName},
- #{email},
- #{avatar},
- #{phonenumber},
- #{sex},
- #{password},
- #{salt},
- #{status},
- #{createBy},
- #{remark},
- sysdate()
- )
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysUserOnlineMapper.xml b/infosouth-system/target/classes/mapper/system/SysUserOnlineMapper.xml
deleted file mode 100644
index 5f8c97310..000000000
--- a/infosouth-system/target/classes/mapper/system/SysUserOnlineMapper.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select sessionId, login_name, dept_name, ipaddr, login_location, browser, os, status, start_timestamp, last_access_time, expire_time
- from sys_user_online
-
-
-
-
-
- replace into sys_user_online(sessionId, login_name, dept_name, ipaddr, login_location, browser, os, status, start_timestamp, last_access_time, expire_time)
- values (#{sessionId}, #{loginName}, #{deptName}, #{ipaddr}, #{loginLocation}, #{browser}, #{os}, #{status}, #{startTimestamp}, #{lastAccessTime}, #{expireTime})
-
-
-
- delete from sys_user_online where sessionId = #{sessionId}
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysUserPostMapper.xml b/infosouth-system/target/classes/mapper/system/SysUserPostMapper.xml
deleted file mode 100644
index a244d15ad..000000000
--- a/infosouth-system/target/classes/mapper/system/SysUserPostMapper.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- delete from sys_user_post where user_id=#{userId}
-
-
-
-
-
- delete from sys_user_post where user_id in
-
- #{userId}
-
-
-
-
- insert into sys_user_post(user_id, post_id) values
-
- (#{item.userId},#{item.postId})
-
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/classes/mapper/system/SysUserRoleMapper.xml b/infosouth-system/target/classes/mapper/system/SysUserRoleMapper.xml
deleted file mode 100644
index fb6070ea8..000000000
--- a/infosouth-system/target/classes/mapper/system/SysUserRoleMapper.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- delete from sys_user_role where user_id=#{userId}
-
-
-
-
-
- delete from sys_user_role where user_id in
-
- #{userId}
-
-
-
-
- insert into sys_user_role(user_id, role_id) values
-
- (#{item.userId},#{item.roleId})
-
-
-
-
- delete from sys_user_role where user_id=#{userId} and role_id=#{roleId}
-
-
-
- delete from sys_user_role where role_id=#{roleId} and user_id in
-
- #{userId}
-
-
-
\ No newline at end of file
diff --git a/infosouth-system/target/infosouth-system-4.1.0.jar b/infosouth-system/target/infosouth-system-4.1.0.jar
deleted file mode 100644
index 2be0d9f8b..000000000
Binary files a/infosouth-system/target/infosouth-system-4.1.0.jar and /dev/null differ
diff --git a/infosouth-system/target/maven-archiver/pom.properties b/infosouth-system/target/maven-archiver/pom.properties
deleted file mode 100644
index fbbeea74b..000000000
--- a/infosouth-system/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Wed Mar 04 15:28:56 CST 2020
-version=4.1.0
-groupId=cn.com.infosouth
-artifactId=infosouth-system
diff --git a/infosouth-system/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/infosouth-system/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
deleted file mode 100644
index 83f1bfdc5..000000000
--- a/infosouth-system/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
+++ /dev/null
@@ -1,56 +0,0 @@
-cn\com\infosouth\system\mapper\SysDictTypeMapper.class
-cn\com\infosouth\system\service\impl\SysLogininforServiceImpl.class
-cn\com\infosouth\system\domain\SysMenu.class
-cn\com\infosouth\system\service\ISysMenuService.class
-cn\com\infosouth\system\domain\SysPost.class
-cn\com\infosouth\system\service\ISysConfigService.class
-cn\com\infosouth\system\service\ISysOperLogService.class
-cn\com\infosouth\system\domain\SysDictData.class
-cn\com\infosouth\system\service\impl\SysNoticeServiceImpl.class
-cn\com\infosouth\system\service\impl\SysUserOnlineServiceImpl.class
-cn\com\infosouth\system\service\ISysDeptService.class
-cn\com\infosouth\system\domain\SysOperLog.class
-cn\com\infosouth\system\service\ISysDictTypeService.class
-cn\com\infosouth\system\mapper\SysRoleMenuMapper.class
-cn\com\infosouth\system\domain\SysUser.class
-cn\com\infosouth\system\service\ISysNoticeService.class
-cn\com\infosouth\system\domain\SysUserPost.class
-cn\com\infosouth\system\service\impl\SysUserServiceImpl.class
-cn\com\infosouth\system\domain\SysUserOnline.class
-cn\com\infosouth\system\mapper\SysOperLogMapper.class
-cn\com\infosouth\system\service\ISysUserService.class
-cn\com\infosouth\system\domain\SysDictType.class
-cn\com\infosouth\system\mapper\SysUserRoleMapper.class
-cn\com\infosouth\system\service\ISysUserOnlineService.class
-cn\com\infosouth\system\mapper\SysUserMapper.class
-cn\com\infosouth\system\domain\SysRoleMenu.class
-cn\com\infosouth\system\service\impl\SysConfigServiceImpl.class
-cn\com\infosouth\system\mapper\SysLogininforMapper.class
-cn\com\infosouth\system\service\impl\SysOperLogServiceImpl.class
-cn\com\infosouth\system\service\impl\SysDictTypeServiceImpl.class
-cn\com\infosouth\system\service\ISysPostService.class
-cn\com\infosouth\system\service\impl\SysMenuServiceImpl.class
-cn\com\infosouth\system\mapper\SysDictDataMapper.class
-cn\com\infosouth\system\service\impl\SysPostServiceImpl.class
-cn\com\infosouth\system\mapper\SysPostMapper.class
-cn\com\infosouth\system\service\ISysDictDataService.class
-cn\com\infosouth\system\service\ISysRoleService.class
-cn\com\infosouth\system\mapper\SysRoleDeptMapper.class
-cn\com\infosouth\system\domain\SysRoleDept.class
-cn\com\infosouth\system\domain\SysConfig.class
-cn\com\infosouth\system\domain\SysLogininfor.class
-cn\com\infosouth\system\mapper\SysNoticeMapper.class
-cn\com\infosouth\system\service\impl\SysDictDataServiceImpl.class
-cn\com\infosouth\system\domain\SysNotice.class
-cn\com\infosouth\system\mapper\SysRoleMapper.class
-cn\com\infosouth\system\mapper\SysUserOnlineMapper.class
-cn\com\infosouth\system\domain\SysDept.class
-cn\com\infosouth\system\domain\SysRole.class
-cn\com\infosouth\system\service\impl\SysRoleServiceImpl.class
-cn\com\infosouth\system\mapper\SysDeptMapper.class
-cn\com\infosouth\system\mapper\SysConfigMapper.class
-cn\com\infosouth\system\service\impl\SysDeptServiceImpl.class
-cn\com\infosouth\system\service\ISysLogininforService.class
-cn\com\infosouth\system\mapper\SysMenuMapper.class
-cn\com\infosouth\system\mapper\SysUserPostMapper.class
-cn\com\infosouth\system\domain\SysUserRole.class
diff --git a/infosouth-system/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/infosouth-system/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
deleted file mode 100644
index 6995b8e10..000000000
--- a/infosouth-system/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
+++ /dev/null
@@ -1,56 +0,0 @@
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysPostMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysRoleDept.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysDept.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysMenuMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysNoticeServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysUserServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysLogininfor.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysOperLogServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysUserOnline.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysNoticeMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysRoleMenuMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysOperLogService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysUserPostMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysDictTypeServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysDictTypeMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysMenuService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysUserService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysRoleMenu.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysConfigService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysDictData.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysUserOnlineServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysDeptServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysRoleServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysRoleService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysLogininforServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysUserMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysUserOnlineMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysDeptMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysPost.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysMenu.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysMenuServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysNoticeService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysRoleMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysPostServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysDeptService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysDictType.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysDictTypeService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysLogininforMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysDictDataServiceImpl.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysLogininforService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysUserOnlineService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysNotice.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysConfigMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysDictDataMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysRoleDeptMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysUserRole.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysUser.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysUserRoleMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysRole.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\mapper\SysOperLogMapper.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysConfig.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysUserPost.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysDictDataService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\ISysPostService.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\domain\SysOperLog.java
-Z:\ram_eclipse_proj\amas.comac.v2\infosouth-system\src\main\java\cn\com\infosouth\system\service\impl\SysConfigServiceImpl.java