Commit 1d3881a5 authored by dmy's avatar dmy

中医药小程序代码提交

parent cb3422ec
...@@ -43,18 +43,43 @@ public class CompanyVo { ...@@ -43,18 +43,43 @@ public class CompanyVo {
@TableAnnotation("latitude") @TableAnnotation("latitude")
@ApiModelProperty(notes = "纬度") @ApiModelProperty(notes = "纬度")
private Double latitude; private Double latitude;
/**
* 邮箱
*/
@TableAnnotation("email")
@ApiModelProperty(notes = "邮箱")
private String email;
/** /**
* 公司座机 * 公司座机
*/ */
@TableAnnotation("company_telephone") @TableAnnotation("company_telephone")
@ApiModelProperty(notes = "公司座机") @ApiModelProperty(notes = "公司座机")
private String companyTelephone; private String companyTelephone;
/**
* 营业日期(如:周一,周二,周三,保存用1.2.3)
*/
@TableAnnotation("work_day")
@ApiModelProperty(notes = "营业日期")
private String workDay;
/** /**
* 工作日期时间 * 工作日期时间
*/ */
@TableAnnotation("work_time") @TableAnnotation("work_time")
@ApiModelProperty(notes = "工作日期时间") @ApiModelProperty(notes = "工作日期时间")
private String workTime; 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 { ...@@ -178,4 +203,36 @@ public class CompanyVo {
public void setCompanyStatus(Integer companyStatus) { public void setCompanyStatus(Integer companyStatus) {
this.companyStatus = 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;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment