|
@@ -29,7 +29,7 @@ public class DreOrderExport {
|
|
|
/**
|
|
|
* 下单时间
|
|
|
*/
|
|
|
- @Excel(name = "下单时间", height = 6, width = 20)
|
|
|
+ @Excel(name = "下单时间", height = 6, width = 20,format = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date orderTime;
|
|
|
|
|
|
/**
|
|
@@ -60,7 +60,7 @@ public class DreOrderExport {
|
|
|
* 餐别
|
|
|
*/
|
|
|
@Excel(name = "餐别", height = 6, width = 20)
|
|
|
- private String mType;
|
|
|
+ private String menuType;
|
|
|
|
|
|
/**
|
|
|
* 接单人
|
|
@@ -71,7 +71,7 @@ public class DreOrderExport {
|
|
|
/**
|
|
|
* 接单时间
|
|
|
*/
|
|
|
- @Excel(name = "接单时间", height = 6, width = 20)
|
|
|
+ @Excel(name = "接单时间", height = 6, width = 20,format = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date receiveTime;
|
|
|
|
|
|
/**
|
|
@@ -83,13 +83,13 @@ public class DreOrderExport {
|
|
|
/**
|
|
|
* 送单时间
|
|
|
*/
|
|
|
- @Excel(name = "送单时间", height = 6, width = 20)
|
|
|
+ @Excel(name = "送单时间", height = 6, width = 20,format = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date sendTime;
|
|
|
|
|
|
/**
|
|
|
* 完成时间
|
|
|
*/
|
|
|
- @Excel(name = "完成时间", height = 6, width = 20)
|
|
|
+ @Excel(name = "完成时间", height = 6, width = 20,format = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date sendEndTime;
|
|
|
|
|
|
/**
|
|
@@ -97,28 +97,4 @@ public class DreOrderExport {
|
|
|
*/
|
|
|
@Excel(name = "备注", height = 6, width = 20)
|
|
|
private String remark;
|
|
|
-
|
|
|
- /**
|
|
|
- * 创建时间
|
|
|
- */
|
|
|
- @Excel(name = "创建时间", height = 6, width = 20)
|
|
|
- private Date createTime;
|
|
|
-
|
|
|
- /**
|
|
|
- * 创建人
|
|
|
- */
|
|
|
- @Excel(name = "创建人", height = 6, width = 20)
|
|
|
- private String createBy;
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改时间
|
|
|
- */
|
|
|
- @Excel(name = "修改时间", height = 6, width = 20)
|
|
|
- private Date updateTime;
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改人
|
|
|
- */
|
|
|
- @Excel(name = "修改人", height = 6, width = 20)
|
|
|
- private String updateBy;
|
|
|
}
|