Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 0accb61e
authored
Jul 24, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增表order_info
1 parent
18e85cdb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
0 deletions
project-order/src/main/java/com/dituhui/pea/order/dao/OrderInfoMPDao.java
project-order/src/main/java/com/dituhui/pea/order/entity/OrderInfo.java
project-order/src/main/java/com/dituhui/pea/order/dao/OrderInfoMPDao.java
0 → 100644
View file @
0accb61
package
com
.
dituhui
.
pea
.
order
.
dao
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.dituhui.pea.order.entity.OrderInfo
;
import
org.apache.ibatis.annotations.Mapper
;
@Mapper
public
interface
OrderInfoMPDao
extends
BaseMapper
<
OrderInfo
>
{
}
project-order/src/main/java/com/dituhui/pea/order/entity/OrderInfo.java
0 → 100644
View file @
0accb61
package
com
.
dituhui
.
pea
.
order
.
entity
;
import
lombok.Data
;
import
java.sql.Timestamp
;
import
java.time.LocalDate
;
@Data
public
class
OrderInfo
{
private
Long
id
;
private
String
orderId
;
private
LocalDate
dt
;
private
String
subId
;
private
String
name
;
private
String
phone
;
private
String
address
;
private
String
x
;
private
String
y
;
private
String
province
;
private
String
city
;
private
String
county
;
private
String
brand
;
private
String
type
;
private
String
skill
;
private
String
applyNote
;
private
String
faultDescribe
;
private
Timestamp
expectTimeBegin
;
private
Timestamp
expectTimeEnd
;
private
String
expectTimeDesc
;
private
String
source
;
private
Integer
beanPriority
;
private
String
beanTags
;
private
String
beanStatus
;
private
String
beanSubStatus
;
private
String
areaId
;
private
String
orgClusterId
;
private
String
orgBranchId
;
private
String
orgGroupId
;
private
String
orgTeamId
;
private
Integer
priority
;
private
String
tags
;
private
String
appointmentStatus
;
private
String
appointmentMethod
;
private
String
orderStatus
;
private
String
serviceStatus
;
private
String
engineerCode
;
private
String
engineer_name
;
private
String
engineer_phone
;
private
String
engineer_code_sub
;
private
Timestamp
plan_start_time
;
private
Timestamp
plan_end_time
;
private
Integer
arrive_elapsed
;
private
Integer
arrive_distance
;
private
Timestamp
actual_start_time
;
private
Timestamp
actual_end_time
;
private
String
description
;
private
Timestamp
createTime
;
private
Timestamp
updateTime
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
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 post a comment