时间字段
parent
0726b31669
commit
9e42f24bff
|
|
@ -79,8 +79,8 @@ public class GetLocationTask {
|
|||
newstate.setGpsTime(DateUtils.parseDate(Helper.NStr(info.getGpsTime()).replace(".0","")));
|
||||
newstate.setSpeed(Helper.FLong(info.getSpeed()));
|
||||
newstate.setOdometer(new BigDecimal(Helper.FDouble(info.getOdometer())) );
|
||||
newstate.setLat(info.getLat());
|
||||
newstate.setLon(info.getLon());
|
||||
newstate.setLat(info.getLat02());
|
||||
newstate.setLon(info.getLon02());
|
||||
newstate.setDirection(Helper.FInt(info.getDirection()));
|
||||
newstate.setStatus(info.getStatus());
|
||||
newstate.setPlaceName(info.getPlaceName());
|
||||
|
|
@ -96,8 +96,8 @@ public class GetLocationTask {
|
|||
newstate.setT6(info.getT6());
|
||||
newstate.setT7(info.getT7());
|
||||
newstate.setT8(info.getT8());
|
||||
newstate.setLat02(info.getLat02());
|
||||
newstate.setLon02(info.getLon02());
|
||||
newstate.setLat02(info.getLat());
|
||||
newstate.setLon02(info.getLon());
|
||||
newstate.setAreaName(info.getAreaName());
|
||||
newstate.setTime1(info.getTime1());
|
||||
newstate.setTime2(info.getTime2());
|
||||
|
|
|
|||
|
|
@ -44,8 +44,8 @@ public class BizCarState
|
|||
private String regName;
|
||||
|
||||
/** 定位时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "定位时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "定位时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date gpsTime;
|
||||
|
||||
/** 速度 */
|
||||
|
|
|
|||
|
|
@ -31,8 +31,8 @@ public class BizDriverClock
|
|||
private Integer clockType;
|
||||
|
||||
/** 打卡时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "打卡时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "打卡时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date clockTime;
|
||||
|
||||
/** 打卡车辆 */
|
||||
|
|
|
|||
|
|
@ -208,8 +208,8 @@ public class BizOrder
|
|||
private String cancelReason;
|
||||
|
||||
/** 取消时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "取消时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "取消时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date cancelTime;
|
||||
|
||||
/** 支付类型 寄付,到付,月结 */
|
||||
|
|
@ -229,8 +229,8 @@ public class BizOrder
|
|||
private Integer payStatus;
|
||||
|
||||
/** 支付时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "支付时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "支付时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date payTime;
|
||||
|
||||
/** 状态 */
|
||||
|
|
@ -238,13 +238,13 @@ public class BizOrder
|
|||
private Integer status;
|
||||
|
||||
/** 开始配送时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "开始配送时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "开始配送时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date startTime;
|
||||
|
||||
/** 到达时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "到达时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "到达时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date arriveTime;
|
||||
|
||||
/** 到达备注 */
|
||||
|
|
|
|||
|
|
@ -42,8 +42,8 @@ public class TrackTemp extends BaseEntity
|
|||
private String regName;
|
||||
|
||||
/** 定位时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "定位时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "定位时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date gpsTime;
|
||||
|
||||
/** 速度 */
|
||||
|
|
|
|||
|
|
@ -170,7 +170,7 @@ public class BizOrderVo
|
|||
private String cancelReason;
|
||||
|
||||
/** 取消时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date cancelTime;
|
||||
|
||||
/** 支付类型 寄付,到付,月结 */
|
||||
|
|
@ -186,18 +186,18 @@ public class BizOrderVo
|
|||
private Integer payStatus;
|
||||
|
||||
/** 支付时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date payTime;
|
||||
|
||||
/** 状态 */
|
||||
private Integer status;
|
||||
|
||||
/** 开始配送时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date startTime;
|
||||
|
||||
/** 到达时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date arriveTime;
|
||||
|
||||
/** 到达备注 */
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@ public class BizOrderVoCustomer
|
|||
private String cancelReason;
|
||||
|
||||
/** 取消时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date cancelTime;
|
||||
|
||||
/** 支付类型 寄付,到付,月结 */
|
||||
|
|
@ -182,18 +182,18 @@ public class BizOrderVoCustomer
|
|||
private Integer payStatus;
|
||||
|
||||
/** 支付时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date payTime;
|
||||
|
||||
/** 状态 */
|
||||
private Integer status;
|
||||
|
||||
/** 开始配送时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date startTime;
|
||||
|
||||
/** 到达时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date arriveTime;
|
||||
|
||||
/** 到达备注 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue