Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bailuntec-cost
Overview
Overview
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
huluobin
bailuntec-cost
Commits
b9a8f4c5
Commit
b9a8f4c5
authored
Jan 19, 2021
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
# update
parent
db4c6e7f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
CostLogDomain.java
...main/java/com/blt/other/database/model/CostLogDomain.java
+4
-4
CostLogDao.java
...c/main/java/com/blt/other/module/cost/dao/CostLogDao.java
+2
-1
No files found.
cost-service/src/main/java/com/blt/other/database/model/CostLogDomain.java
View file @
b9a8f4c5
package
com
.
blt
.
other
.
database
.
model
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
lombok.Data
;
...
...
@@ -21,7 +23,9 @@ public class CostLogDomain {
public
static
final
int
HR_PASS
=
8
;
@TableId
(
type
=
IdType
.
AUTO
)
private
Integer
id
;
// 费用单日志
private
String
costNo
;
// 费用单号
private
String
updateUsercode
;
// 更新人编号
private
String
updateUsername
;
// 更新人姓名
...
...
@@ -32,9 +36,5 @@ public class CostLogDomain {
private
Integer
updateUserid
;
// 更新人 ID
//1-普通日志 2-部门审核费用单 3-部门审核费用单
//4 -财务部门自动通过审核 5-财务部门手动审核
//6-最终审核自动通过 7-最终审核手动通过
//
private
Integer
type
;
}
cost-service/src/main/java/com/blt/other/module/cost/dao/CostLogDao.java
View file @
b9a8f4c5
package
com
.
blt
.
other
.
module
.
cost
.
dao
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.blt.other.database.model.CostLogDomain
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.springframework.stereotype.Repository
;
...
...
@@ -8,7 +9,7 @@ import java.util.List;
@Mapper
@Repository
public
interface
CostLogDao
{
public
interface
CostLogDao
extends
BaseMapper
<
CostLogDomain
>
{
List
<
CostLogDomain
>
selectByCostNo
(
String
costNo
);
...
...
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