Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
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
TCM
tcm-system
Commits
1d3881a5
Commit
1d3881a5
authored
Dec 29, 2025
by
dmy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
中医药小程序代码提交
parent
cb3422ec
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
0 deletions
+57
-0
CompanyVo.java
src/main/java/com/tcm/util/common/CompanyVo.java
+57
-0
No files found.
src/main/java/com/tcm/util/common/CompanyVo.java
View file @
1d3881a5
...
...
@@ -43,18 +43,43 @@ public class CompanyVo {
@TableAnnotation
(
"latitude"
)
@ApiModelProperty
(
notes
=
"纬度"
)
private
Double
latitude
;
/**
* 邮箱
*/
@TableAnnotation
(
"email"
)
@ApiModelProperty
(
notes
=
"邮箱"
)
private
String
email
;
/**
* 公司座机
*/
@TableAnnotation
(
"company_telephone"
)
@ApiModelProperty
(
notes
=
"公司座机"
)
private
String
companyTelephone
;
/**
* 营业日期(如:周一,周二,周三,保存用1.2.3)
*/
@TableAnnotation
(
"work_day"
)
@ApiModelProperty
(
notes
=
"营业日期"
)
private
String
workDay
;
/**
* 工作日期时间
*/
@TableAnnotation
(
"work_time"
)
@ApiModelProperty
(
notes
=
"工作日期时间"
)
private
String
workTime
;
/**
* 营业开始时间
*/
@TableAnnotation
(
"begin_time"
)
@ApiModelProperty
(
notes
=
"营业开始时间"
)
private
String
beginTime
;
/**
* 营业结束时间
*/
@TableAnnotation
(
"end_time"
)
@ApiModelProperty
(
notes
=
"营业结束时间"
)
private
String
endTime
;
/**
* 节假日日期
*/
...
...
@@ -178,4 +203,36 @@ public class CompanyVo {
public
void
setCompanyStatus
(
Integer
companyStatus
)
{
this
.
companyStatus
=
companyStatus
;
}
public
String
getWorkDay
()
{
return
workDay
;
}
public
void
setWorkDay
(
String
workDay
)
{
this
.
workDay
=
workDay
;
}
public
String
getBeginTime
()
{
return
beginTime
;
}
public
void
setBeginTime
(
String
beginTime
)
{
this
.
beginTime
=
beginTime
;
}
public
String
getEndTime
()
{
return
endTime
;
}
public
void
setEndTime
(
String
endTime
)
{
this
.
endTime
=
endTime
;
}
public
String
getEmail
()
{
return
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
}
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