Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
HYH.APSJ
Project
Project
Details
Activity
Releases
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
佟礼
HYH.APSJ
Commits
00077f3b
Commit
00077f3b
authored
Dec 10, 2025
by
DESKTOP-VKRD9QF\Administration
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
约束策略
parent
8447ab72
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
6664 additions
and
0 deletions
+6664
-0
chromosome_result_D890A9B6AC0149EEA99F6B618D84218E.json
...t/chromosome_result_D890A9B6AC0149EEA99F6B618D84218E.json
+6465
-0
Config.java
src/main/java/com/aps/entity/Config.java
+22
-0
StrategyRule.java
src/main/java/com/aps/entity/StrategyRule.java
+21
-0
ConfigMapper.java
src/main/java/com/aps/mapper/ConfigMapper.java
+16
-0
StrategyRuleMapper.java
src/main/java/com/aps/mapper/StrategyRuleMapper.java
+16
-0
ConfigService.java
src/main/java/com/aps/service/ConfigService.java
+16
-0
StrategyRuleService.java
src/main/java/com/aps/service/StrategyRuleService.java
+16
-0
ConfigServiceImpl.java
src/main/java/com/aps/service/impl/ConfigServiceImpl.java
+20
-0
StrategyRuleServiceImpl.java
...in/java/com/aps/service/impl/StrategyRuleServiceImpl.java
+20
-0
ConfigMapper.xml
src/main/resources/mapper/ConfigMapper.xml
+27
-0
StrategyRuleMapper.xml
src/main/resources/mapper/StrategyRuleMapper.xml
+25
-0
No files found.
result/chromosome_result_D890A9B6AC0149EEA99F6B618D84218E.json
0 → 100644
View file @
00077f3b
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/main/java/com/aps/entity/Config.java
0 → 100644
View file @
00077f3b
package
com
.
aps
.
entity
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.time.LocalDateTime
;
@Data
public
class
Config
{
private
Long
id
;
private
String
page
;
private
String
component
;
private
String
key
;
private
String
content
;
private
String
note
;
private
LocalDateTime
creationtime
;
private
Long
creatoruserid
;
private
LocalDateTime
lastmodificationtime
;
private
Long
lastmodifieruserid
;
private
Long
isdeleted
;
private
LocalDateTime
deletiontime
;
private
Long
deleteruserid
;
}
\ No newline at end of file
src/main/java/com/aps/entity/StrategyRule.java
0 → 100644
View file @
00077f3b
package
com
.
aps
.
entity
;
import
lombok.Data
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
java.io.Serializable
;
import
java.time.LocalDateTime
;
@Data
public
class
StrategyRule
{
private
Long
id
;
private
Long
creatorUserId
;
private
LocalDateTime
creationTime
;
private
Long
lastModifierUserId
;
private
LocalDateTime
lastModificationTime
;
private
Integer
isDeleted
;
private
Long
deleterUserId
;
private
LocalDateTime
deletionTime
;
private
String
name
;
private
Short
isGlobal
;
private
String
forwardScheduling
;
}
\ No newline at end of file
src/main/java/com/aps/mapper/ConfigMapper.java
0 → 100644
View file @
00077f3b
package
com
.
aps
.
mapper
;
import
com.aps.entity.Config
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
/**
* <p>
* 用户配置 Mapper 接口
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-10
*/
public
interface
ConfigMapper
extends
BaseMapper
<
Config
>
{
}
src/main/java/com/aps/mapper/StrategyRuleMapper.java
0 → 100644
View file @
00077f3b
package
com
.
aps
.
mapper
;
import
com.aps.entity.StrategyRule
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
/**
* <p>
* 策略规则 Mapper 接口
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-10
*/
public
interface
StrategyRuleMapper
extends
BaseMapper
<
StrategyRule
>
{
}
src/main/java/com/aps/service/ConfigService.java
0 → 100644
View file @
00077f3b
package
com
.
aps
.
service
;
import
com.aps.entity.Config
;
import
com.baomidou.mybatisplus.extension.service.IService
;
/**
* <p>
* 用户配置 服务类
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-10
*/
public
interface
ConfigService
extends
IService
<
Config
>
{
}
src/main/java/com/aps/service/StrategyRuleService.java
0 → 100644
View file @
00077f3b
package
com
.
aps
.
service
;
import
com.aps.entity.StrategyRule
;
import
com.baomidou.mybatisplus.extension.service.IService
;
/**
* <p>
* 策略规则 服务类
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-10
*/
public
interface
StrategyRuleService
extends
IService
<
StrategyRule
>
{
}
src/main/java/com/aps/service/impl/ConfigServiceImpl.java
0 → 100644
View file @
00077f3b
package
com
.
aps
.
service
.
impl
;
import
com.aps.entity.Config
;
import
com.aps.mapper.ConfigMapper
;
import
com.aps.service.ConfigService
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
org.springframework.stereotype.Service
;
/**
* <p>
* 用户配置 服务实现类
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-10
*/
@Service
public
class
ConfigServiceImpl
extends
ServiceImpl
<
ConfigMapper
,
Config
>
implements
ConfigService
{
}
src/main/java/com/aps/service/impl/StrategyRuleServiceImpl.java
0 → 100644
View file @
00077f3b
package
com
.
aps
.
service
.
impl
;
import
com.aps.entity.StrategyRule
;
import
com.aps.mapper.StrategyRuleMapper
;
import
com.aps.service.StrategyRuleService
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
org.springframework.stereotype.Service
;
/**
* <p>
* 策略规则 服务实现类
* </p>
*
* @author MyBatis-Plus
* @since 2025-12-10
*/
@Service
public
class
StrategyRuleServiceImpl
extends
ServiceImpl
<
StrategyRuleMapper
,
StrategyRule
>
implements
StrategyRuleService
{
}
src/main/resources/mapper/ConfigMapper.xml
0 → 100644
View file @
00077f3b
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.aps.mapper.ConfigMapper"
>
<!-- 通用查询映射结果 -->
<resultMap
id=
"BaseResultMap"
type=
"com.aps.entity.Config"
>
<id
column=
"ID"
property=
"id"
/>
<result
column=
"PAGE"
property=
"page"
/>
<result
column=
"COMPONENT"
property=
"component"
/>
<result
column=
"KEY"
property=
"key"
/>
<result
column=
"CONTENT"
property=
"content"
/>
<result
column=
"NOTE"
property=
"note"
/>
<result
column=
"CREATIONTIME"
property=
"creationtime"
/>
<result
column=
"CREATORUSERID"
property=
"creatoruserid"
/>
<result
column=
"LASTMODIFICATIONTIME"
property=
"lastmodificationtime"
/>
<result
column=
"LASTMODIFIERUSERID"
property=
"lastmodifieruserid"
/>
<result
column=
"ISDELETED"
property=
"isdeleted"
/>
<result
column=
"DELETIONTIME"
property=
"deletiontime"
/>
<result
column=
"DELETERUSERID"
property=
"deleteruserid"
/>
</resultMap>
<!-- 通用查询结果列 -->
<sql
id=
"Base_Column_List"
>
ID, PAGE, COMPONENT, KEY, CONTENT, NOTE, CREATIONTIME, CREATORUSERID, LASTMODIFICATIONTIME, LASTMODIFIERUSERID, ISDELETED, DELETIONTIME, DELETERUSERID
</sql>
</mapper>
src/main/resources/mapper/StrategyRuleMapper.xml
0 → 100644
View file @
00077f3b
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.aps.mapper.StrategyRuleMapper"
>
<!-- 通用查询映射结果 -->
<resultMap
id=
"BaseResultMap"
type=
"com.aps.entity.StrategyRule"
>
<id
column=
"ID"
property=
"id"
/>
<result
column=
"CREATOR_USER_ID"
property=
"creatorUserId"
/>
<result
column=
"CREATION_TIME"
property=
"creationTime"
/>
<result
column=
"LAST_MODIFIER_USER_ID"
property=
"lastModifierUserId"
/>
<result
column=
"LAST_MODIFICATION_TIME"
property=
"lastModificationTime"
/>
<result
column=
"IS_DELETED"
property=
"isDeleted"
/>
<result
column=
"DELETER_USER_ID"
property=
"deleterUserId"
/>
<result
column=
"DELETION_TIME"
property=
"deletionTime"
/>
<result
column=
"NAME"
property=
"name"
/>
<result
column=
"IS_GLOBAL"
property=
"isGlobal"
/>
<result
column=
"FORWARD_SCHEDULING"
property=
"forwardScheduling"
/>
</resultMap>
<!-- 通用查询结果列 -->
<sql
id=
"Base_Column_List"
>
ID, CREATOR_USER_ID, CREATION_TIME, LAST_MODIFIER_USER_ID, LAST_MODIFICATION_TIME, IS_DELETED, DELETER_USER_ID, DELETION_TIME, NAME, IS_GLOBAL, FORWARD_SCHEDULING
</sql>
</mapper>
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