This commit is contained in:
Chengliang 2023-06-14 13:42:14 +08:00
parent 33c209cd0f
commit 59e17ca9f5
8 changed files with 61 additions and 8 deletions

12
.gitignore vendored
View File

@ -1,17 +1,15 @@
/weaver-hrm-organization.iml /weaver-develop.iml
/out/ /out/
/.idea/ .idea/
HELP.md HELP.md
target/ target/
### IntelliJ IDEA ###
.idea .idea
/src/test /test
/src/rebel.xml /src/rebel.xml
/src/META-INF /src/META-INF
/WEB-INF/config
/log /log
/weaver-develop.iml

View File

@ -0,0 +1,8 @@
<component name="ArtifactManager">
<artifact type="jar" name="weaver-develop:jar">
<output-path>$PROJECT_DIR$/out/artifacts/weaver_develop_jar</output-path>
<root id="archive" name="weaver-develop.jar">
<element id="module-output" name="weaver-develop" />
</root>
</artifact>
</component>

8
.idea/compiler.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
<profile default="true" name="Default" enabled="true" />
</annotationProcessing>
</component>
</project>

View File

@ -0,0 +1,9 @@
<component name="libraryTable">
<library name="classbean">
<CLASSES>
<root url="file://$PROJECT_DIR$/../../../../weaver/ecology/classbean" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

13
.idea/libraries/lib.xml Normal file
View File

@ -0,0 +1,13 @@
<component name="libraryTable">
<library name="lib">
<CLASSES>
<root url="file://$PROJECT_DIR$/../../../../weaver/ecology/WEB-INF/lib" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="file://$PROJECT_DIR$/../../../../weaver/ecology/WEB-INF/lib" />
</SOURCES>
<jarDirectory url="file://$PROJECT_DIR$/../../../../weaver/ecology/WEB-INF/lib" recursive="false" />
<jarDirectory url="file://$PROJECT_DIR$/../../../../weaver/ecology/WEB-INF/lib" recursive="false" type="SOURCES" />
</library>
</component>

3
src/META-INF/MANIFEST.MF Normal file
View File

@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: test.MainTest

View File

@ -18,7 +18,7 @@ import java.util.*;
**/ **/
public class MobilePermissionsCmd extends AbstractCommonCommand<Map<String, Object>> { public class MobilePermissionsCmd extends AbstractCommonCommand<Map<String, Object>> {
private static final String FIELDID = "field100026"; //移动电话自定义字段 private static final String FIELDID = "field100043"; //移动电话自定义字段field100026
private static final String SCOPE = "HrmCustomFieldByInfoType"; private static final String SCOPE = "HrmCustomFieldByInfoType";

14
src/test/MainTest.java Normal file
View File

@ -0,0 +1,14 @@
package test;
/**
* @Author weaver_cl
* @Description:
* @Date 2022/10/9
* @Version V1.0
**/
public class MainTest {
public static void main(String[] args) {
}
}