Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
47c90a0e
Commit
47c90a0e
authored
Nov 17, 2019
by
季圣华
Browse files
将Resource资源的类型改为时间戳
parent
4ee0c987
Changes
26
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/jsh/erp/service/CommonQueryManager.java
View file @
47c90a0e
...
...
@@ -140,9 +140,4 @@ public class CommonQueryManager {
return
0
;
}
}
\ No newline at end of file
src/main/java/com/jsh/erp/service/ResourceInfo.java
View file @
47c90a0e
...
...
@@ -4,30 +4,6 @@ import java.lang.annotation.*;
/**
* @author jishenghua 2018-10-7 15:25:39
* user-5
* role-10
* depot-20
* log-25
* functions-30
* inOutItem-35
* unit-40
* person-45
* userBusiness-50
* systemConfig-55
* materialProperty-60
* account-65
* supplier-70
* materialCategory-75
* material-80
* depotHead-85
* depotItem-90
* accountHead-95
* accountItem-100
* serialNumber-105
* organization-110
* orgaUserRel-115
* tenant-120
* msg-125
*/
@Target
({
ElementType
.
TYPE
,
ElementType
.
ANNOTATION_TYPE
})
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
@@ -36,4 +12,4 @@ import java.lang.annotation.*;
public
@interface
ResourceInfo
{
String
value
();
int
type
();
}
}
\ No newline at end of file
src/main/java/com/jsh/erp/service/account/AccountResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"account"
,
type
=
65
)
@ResourceInfo
(
value
=
"account"
,
type
=
1574002270
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/accountHead/AccountHeadResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"accountHead"
,
type
=
95
)
@ResourceInfo
(
value
=
"accountHead"
,
type
=
1574002281
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/accountItem/AccountItemResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"accountItem"
,
type
=
1
00
)
@ResourceInfo
(
value
=
"accountItem"
,
type
=
1
574002293
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/depot/DepotResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"depot"
,
type
=
2
0
)
@ResourceInfo
(
value
=
"depot"
,
type
=
157400230
2
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/depotHead/DepotHeadResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"depotHead"
,
type
=
85
)
@ResourceInfo
(
value
=
"depotHead"
,
type
=
1574002310
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/depotItem/DepotItemResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"depotItem"
,
type
=
90
)
@ResourceInfo
(
value
=
"depotItem"
,
type
=
1574002318
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/functions/FunctionsResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"functions"
,
type
=
30
)
@ResourceInfo
(
value
=
"functions"
,
type
=
1574002329
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/inOutItem/InOutItemResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"inOutItem"
,
type
=
35
)
@ResourceInfo
(
value
=
"inOutItem"
,
type
=
1574002340
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/log/LogResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"log"
,
type
=
25
)
@ResourceInfo
(
value
=
"log"
,
type
=
1574002346
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/material/MaterialResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"material"
,
type
=
80
)
@ResourceInfo
(
value
=
"material"
,
type
=
1574002355
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/materialCategory/MaterialCategoryResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"materialCategory"
,
type
=
7
5
)
@ResourceInfo
(
value
=
"materialCategory"
,
type
=
157400236
5
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/materialProperty/MaterialPropertyResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"materialProperty"
,
type
=
60
)
@ResourceInfo
(
value
=
"materialProperty"
,
type
=
1574002372
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/msg/MsgResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2019-9-7 22:52:35
*/
@ResourceInfo
(
value
=
"msg"
,
type
=
1
2
5
)
@ResourceInfo
(
value
=
"msg"
,
type
=
15
74002380
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/orgaUserRel/OrgaUserRelResource.java
View file @
47c90a0e
...
...
@@ -10,7 +10,7 @@ import java.lang.annotation.*;
* @Author: cjl
* @Date: 2019/3/11 18:11
*/
@ResourceInfo
(
value
=
"orgaUserRel"
,
type
=
1
1
5
)
@ResourceInfo
(
value
=
"orgaUserRel"
,
type
=
15
74002394
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/organization/OrganizationResource.java
View file @
47c90a0e
...
...
@@ -10,7 +10,7 @@ import java.lang.annotation.*;
* @Author: cjl
* @Date: 2019/3/6 15:10
*/
@ResourceInfo
(
value
=
"organization"
,
type
=
1
10
)
@ResourceInfo
(
value
=
"organization"
,
type
=
1
574002387
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/person/PersonResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"person"
,
type
=
45
)
@ResourceInfo
(
value
=
"person"
,
type
=
1574002402
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/role/RoleResource.java
View file @
47c90a0e
...
...
@@ -7,7 +7,7 @@ import java.lang.annotation.*;
/**
* @author jishenghua qq752718920 2018-10-7 15:26:27
*/
@ResourceInfo
(
value
=
"role"
,
type
=
1
0
)
@ResourceInfo
(
value
=
"role"
,
type
=
1
574002414
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
src/main/java/com/jsh/erp/service/serialNumber/SerialNumberResource.java
View file @
47c90a0e
...
...
@@ -10,7 +10,7 @@ import java.lang.annotation.*;
* @Author: cjl
* @Date: 2019/1/21 16:33
*/
@ResourceInfo
(
value
=
"serialNumber"
,
type
=
1
0
5
)
@ResourceInfo
(
value
=
"serialNumber"
,
type
=
15
74002422
)
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment