Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ejc-propertmanagement-web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
余彦广
ejc-propertmanagement-web
Commits
3743712b
Commit
3743712b
authored
Jan 26, 2026
by
13223
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加房产管理实体
parent
4380e3b7
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
497 additions
and
5 deletions
+497
-5
ejc-propertmanagement-api/com/ejianc/business/propertmanagement/vo/houseMaintenanceVO.java
...anc/business/propertmanagement/vo/houseMaintenanceVO.java
+23
-0
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/bean/houseMaintenanceEntity.java
...siness/propertmanagement/bean/houseMaintenanceEntity.java
+28
-0
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/controller/houseMaintenanceController.java
...pertmanagement/controller/houseMaintenanceController.java
+241
-0
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/mapper/houseMaintenanceMapper.java
...ness/propertmanagement/mapper/houseMaintenanceMapper.java
+17
-0
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/service/IhouseMaintenanceService.java
...s/propertmanagement/service/IhouseMaintenanceService.java
+14
-0
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/service/impl/houseMaintenanceBpmServiceImpl.java
...nagement/service/impl/houseMaintenanceBpmServiceImpl.java
+137
-0
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/service/impl/houseMaintenanceServiceImpl.java
...tmanagement/service/impl/houseMaintenanceServiceImpl.java
+19
-0
ejc-propertmanagement-web/src/main/resources/bootstrap.yml
ejc-propertmanagement-web/src/main/resources/bootstrap.yml
+18
-5
No files found.
ejc-propertmanagement-api/com/ejianc/business/propertmanagement/vo/houseMaintenanceVO.java
0 → 100644
View file @
3743712b
package
com.ejianc.business.propertmanagement.vo
;
import
java.util.Date
;
import
java.math.*
;
import
java.util.List
;
import
java.util.ArrayList
;
import
java.io.Serializable
;
import
com.ejianc.framework.skeleton.template.BaseVO
;
/**
* 房产管理
*
* @author generator
*
*/
public
class
houseMaintenanceVO
extends
BaseVO
{
private
static
final
long
serialVersionUID
=
1L
;
}
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/bean/houseMaintenanceEntity.java
0 → 100644
View file @
3743712b
package
com.ejianc.business.propertmanagement.bean
;
import
java.util.Date
;
import
java.math.*
;
import
java.util.List
;
import
java.util.ArrayList
;
import
java.io.Serializable
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.ejianc.framework.skeleton.template.BaseEntity
;
import
com.ejianc.framework.skeleton.template.annotation.SubEntity
;
/**
* 房产管理
*
* @author generator
*
*/
@TableName
(
"house_maintenance_entity"
)
public
class
houseMaintenanceEntity
extends
BaseEntity
{
private
static
final
long
serialVersionUID
=
1L
;
}
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/controller/houseMaintenanceController.java
0 → 100644
View file @
3743712b
This diff is collapsed.
Click to expand it.
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/mapper/houseMaintenanceMapper.java
0 → 100644
View file @
3743712b
package
com.ejianc.business.propertmanagement.mapper
;
import
org.apache.ibatis.annotations.Mapper
;
import
com.ejianc.framework.skeleton.template.BaseCrudMapper
;
import
com.ejianc.business.propertmanagement.bean.houseMaintenanceEntity
;
/**
* 房产管理
*
* @author generator
*
*/
@Mapper
public
interface
houseMaintenanceMapper
extends
BaseCrudMapper
<
houseMaintenanceEntity
>
{
}
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/service/IhouseMaintenanceService.java
0 → 100644
View file @
3743712b
package
com.ejianc.business.propertmanagement.service
;
import
com.ejianc.framework.skeleton.template.IBaseService
;
import
com.ejianc.business.propertmanagement.bean.houseMaintenanceEntity
;
/**
* 房产管理
*
* @author generator
*
*/
public
interface
IhouseMaintenanceService
extends
IBaseService
<
houseMaintenanceEntity
>
{
}
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/service/impl/houseMaintenanceBpmServiceImpl.java
0 → 100644
View file @
3743712b
package
com.ejianc.business.propertmanagement.service.impl
;
import
org.springframework.stereotype.Service
;
import
java.util.Map
;
import
com.ejianc.framework.core.response.CommonResponse
;
import
com.ejianc.framework.skeleton.billState.service.ICommonBusinessService
;
@Service
(
"houseMaintenance"
)
public
class
houseMaintenanceBpmServiceImpl
implements
ICommonBusinessService
{
/**
* 提交前回调
*
* @param billId
* @param state
* @return
*/
@Override
public
CommonResponse
<
String
>
beforeSubmitProcessor
(
Long
billId
,
Integer
state
,
String
billTypeCode
)
{
//TODO
return
CommonResponse
.
success
();
};
/**
* 提交完回调
*
* @param
* @return
*/
@Override
public
CommonResponse
<
String
>
afterSubmitProcessor
(
Long
billId
,
Integer
state
,
String
billTypeCode
){
//TODO
return
CommonResponse
.
success
();
}
/**
* 有审批流的撤回前回调
*
* @param billId
* @param state
* @return
*/
@Override
public
CommonResponse
<
String
>
beforeHasBpmBack
(
Long
billId
,
Integer
state
,
String
billTypeCode
)
{
return
CommonResponse
.
success
();
};
/**
* 有审批流的撤回后回调
*
* @param
* @return
*/
@Override
public
CommonResponse
<
String
>
afterHasBpmBack
(
Long
billId
,
Integer
state
,
String
billTypeCode
){
return
CommonResponse
.
success
();
};
/**
* 审批节点审批中时节点审批前回调
*
* @param billId
* @param state
* @return
*/
@Override
public
CommonResponse
<
String
>
beforeInApprovalBack
(
Long
billId
,
Integer
state
,
String
billTypeCode
,
String
sign
)
{
return
CommonResponse
.
success
();
};
/**
* 审批节点审批中时节点审批后回调
*
* @param billId //单据id
* @param state //单据状态
* @param billTypeCode //单据类型code
* @param taskId //该流程id
* @param isEnd //该节点是否结束
* @return
*/
@Override
public
CommonResponse
<
String
>
afterInApprovalBack
(
Long
billId
,
Integer
state
,
String
billTypeCode
,
String
taskId
,
Boolean
isEnd
,
String
sign
,
Map
<
String
,
Object
>
other
){
return
CommonResponse
.
success
();
};
/**
* 终审审核前回调
*
* @param billId
* @param state
* @return
*/
@Override
public
CommonResponse
<
String
>
beforeApprovalProcessor
(
Long
billId
,
Integer
state
,
String
billTypeCode
)
{
//TODO
return
CommonResponse
.
success
();
}
/**
* 终审审核完回调
*
* @param
* @return
*/
@Override
public
CommonResponse
<
String
>
afterApprovalProcessor
(
Long
billId
,
Integer
state
,
String
billTypeCode
)
{
//TODO
return
CommonResponse
.
success
();
}
/**
* 弃审前事件回调
*
* @param billId
* @param state
* @return
*/
@Override
public
CommonResponse
<
String
>
beforeAbstainingProcessor
(
Long
billId
,
Integer
state
,
String
billTypeCode
)
{
//TODO
return
CommonResponse
.
success
();
}
/**
* 弃审后事件回调
*
* @param billId
* @param state
* @return
*/
@Override
public
CommonResponse
<
String
>
afterAbstainingProcessor
(
Long
billId
,
Integer
state
,
String
billTypeCode
)
{
//TODO
return
CommonResponse
.
success
();
}
}
ejc-propertmanagement-impl/com/ejianc/business/propertmanagement/service/impl/houseMaintenanceServiceImpl.java
0 → 100644
View file @
3743712b
package
com.ejianc.business.propertmanagement.service.impl
;
import
org.springframework.stereotype.Service
;
import
com.ejianc.framework.skeleton.template.BaseServiceImpl
;
import
com.ejianc.business.propertmanagement.mapper.houseMaintenanceMapper
;
import
com.ejianc.business.propertmanagement.bean.houseMaintenanceEntity
;
import
com.ejianc.business.propertmanagement.service.IhouseMaintenanceService
;
/**
* 房产管理
*
* @author generator
*
*/
@Service
(
"houseMaintenanceService"
)
public
class
houseMaintenanceServiceImpl
extends
BaseServiceImpl
<
houseMaintenanceMapper
,
houseMaintenanceEntity
>
implements
IhouseMaintenanceService
{
}
ejc-propertmanagement-web/src/main/resources/bootstrap.yml
View file @
3743712b
common
:
common
:
security
:
security
:
user
:
user
:
name
:
ejianc
name
:
SYSDBA
password
:
ejianc
# # 本地测试
#password: ejianc
# 测试环境
# password: xN0sQ1eX2xM0nI7
# #正式环境
password
:
4ewyFGC0gA!
server
:
server
:
port
:
8080
port
:
8080
...
@@ -24,10 +29,18 @@ spring:
...
@@ -24,10 +29,18 @@ spring:
cloud
:
cloud
:
config
:
config
:
name
:
${spring.application.name}
name
:
${spring.application.name}
profile
:
local
label
:
master
label
:
master
uri
:
https://${common.security.user.name}:${common.security.user.password}@portal.17elian.com/ejc-configserver
# 本地开发
#profile: zhhtlocal
#uri: https://${common.security.user.name}:${common.security.user.password}@portal.17elian.com/ejc-configserver
# 测试环境
# profile: zhhttest
# uri: http://${common.security.user.name}:${common.security.user.password}@172.16.42.231:8068/ejc-configserver
#正式环境
profile
:
zhhtprod
uri
:
http://${common.security.user.name}:${common.security.user.password}@192.168.7.192:8068/ejc-configserver
eureka
:
eureka
:
client
:
client
:
register-with-eureka
:
false
register-with-eureka
:
false
...
...
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