Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
topsun-bpm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
鲁鑫
topsun-bpm
Commits
28ea8694
Commit
28ea8694
authored
Dec 08, 2023
by
覃振观
👶
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
04d91d81
0e802bc6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
1 deletion
+49
-1
application.properties
topsun-xt/src/main/resources/application.properties
+3
-1
SizeGroup.java
...main/java/com/huigou/topsun/product/domain/SizeGroup.java
+46
-0
No files found.
topsun-xt/src/main/resources/application.properties
View file @
28ea8694
...
@@ -16,6 +16,8 @@ log.db.password=123456
...
@@ -16,6 +16,8 @@ log.db.password=123456
shiro.host
=
127.0.0.1
shiro.host
=
127.0.0.1
shiro.port
=
6379
shiro.port
=
6379
#shiro.host=192.168.222.122
#shiro.port=6401
shiro.expire
=
1800000
shiro.expire
=
1800000
system.dataSource
=
dataSource
system.dataSource
=
dataSource
...
@@ -43,7 +45,7 @@ shiro.ldap.systemPassword=123456
...
@@ -43,7 +45,7 @@ shiro.ldap.systemPassword=123456
shiro.ldap.userDnTemplate
=
{0}@dev.huigou.com
shiro.ldap.userDnTemplate
=
{0}@dev.huigou.com
#email
#email
tech.email.enable
=
tru
e
tech.email.enable
=
fals
e
tech.email.host
=
smtp.qq.com
tech.email.host
=
smtp.qq.com
tech.email.username
=
1650842865@qq.com
tech.email.username
=
1650842865@qq.com
tech.email.password
=
pfkkokowbrokdfdc
tech.email.password
=
pfkkokowbrokdfdc
...
...
topsun/src/main/java/com/huigou/topsun/product/domain/SizeGroup.java
0 → 100644
View file @
28ea8694
package
com
.
huigou
.
topsun
.
product
.
domain
;
import
java.io.Serializable
;
import
javax.persistence.Column
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.Id
;
import
javax.persistence.Table
;
import
lombok.Data
;
import
org.hibernate.annotations.GenericGenerator
;
/**
* 尺码组主表
* @TableName size_group
*/
@Table
(
name
=
"size_group"
)
@Data
public
class
SizeGroup
implements
Serializable
{
/**
* 尺码组id
*/
@Id
@GeneratedValue
(
generator
=
"system-uuid"
)
@GenericGenerator
(
name
=
"system-uuid"
,
strategy
=
"guid"
)
@Column
(
name
=
"size_group_id"
)
private
String
sizeGroupId
;
/**
* 尺码组名称
*/
@Column
(
name
=
"size_group_name"
)
private
String
sizeGroupName
;
/**
* 尺码组编码
*/
@Column
(
name
=
"size_group_code"
)
private
String
sizeGroupCode
;
/**
* 尺码组类型
*/
@Column
(
name
=
"size_group_type"
)
private
String
sizeGroupType
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
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