Commit 50790896 authored by renchao's avatar renchao
parents 76867c73 28933449
...@@ -130,8 +130,8 @@ public class TEquipmentAccount implements Serializable { ...@@ -130,8 +130,8 @@ public class TEquipmentAccount implements Serializable {
/** /**
* 状态,分为在用1和报废0 * 状态,分为在用1和报废0
*/ */
@TableField("IsUsing") @TableField("Sbzt")
private Boolean IsUsing; private Boolean Sbzt;
/** /**
* 备注 * 备注
......
...@@ -29,8 +29,8 @@ public class TWeight implements Serializable { ...@@ -29,8 +29,8 @@ public class TWeight implements Serializable {
/** /**
* ID号 * ID号
*/ */
@TableId("Uid") @TableId("ID")
private String Uid; private String ID;
/** /**
* 日期 日期=日期+时间 * 日期 日期=日期+时间
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<select id="countByTable" resultType="cn.wise.sc.acquisition.business.model.vo.DataStatisticsTableVo"> <select id="countByTable" resultType="cn.wise.sc.acquisition.business.model.vo.DataStatisticsTableVo">
SELECT tw.Uid,Convert(varchar(19),tw.Rq,120)as Rq,tw.TruckID,'发货单位' as clientName,tpt.WorkType,tw.Mz,tw.Pz,tw.Jz SELECT tw.ID as Uid,Convert(varchar(19),tw.Rq,120)as Rq,tw.TruckID,'发货单位' as clientName,tpt.WorkType,tw.Mz,tw.Pz,tw.Jz
FROM T_Weight tw FROM T_Weight tw
left join T_Processes_Truck tpt on tpt.TruckID = tw.TruckID left join T_Processes_Truck tpt on tpt.TruckID = tw.TruckID
where 1=1 where 1=1
......
...@@ -122,7 +122,7 @@ public class TEquipmentAccountQuery { ...@@ -122,7 +122,7 @@ public class TEquipmentAccountQuery {
* 状态,分为在用1和报废0 * 状态,分为在用1和报废0
*/ */
@ApiModelProperty("状态,分为在用1和报废0") @ApiModelProperty("状态,分为在用1和报废0")
private Boolean isUsing; private Boolean sbzt;
/** /**
* 备注 * 备注
......
...@@ -41,7 +41,7 @@ public class TEquipmentRunQuery { ...@@ -41,7 +41,7 @@ public class TEquipmentRunQuery {
/** /**
* 运行日期 * 运行日期
*/ */
@ApiModelProperty("运行日期") @ApiModelProperty("运行时间")
private LocalDateTime runDate; private LocalDateTime runDate;
/** /**
...@@ -53,31 +53,31 @@ public class TEquipmentRunQuery { ...@@ -53,31 +53,31 @@ public class TEquipmentRunQuery {
/** /**
* 当天停机时间 * 当天停机时间
*/ */
@ApiModelProperty("StopHour") @ApiModelProperty("当天停机时间")
private Float stopHour; private Float stopHour;
/** /**
* 停机原因:故障/维修/保养 * 停机原因:故障/维修/保养
*/ */
@ApiModelProperty("StopType") @ApiModelProperty("停机原因:故障/维修/保养")
private String stopType; private String stopType;
/** /**
* 驾驶员/操作人员 * 驾驶员/操作人员
*/ */
@ApiModelProperty("Driver") @ApiModelProperty("驾驶员/操作人员")
private String driver; private String driver;
/** /**
* 填写人 * 填写人
*/ */
@ApiModelProperty("Txr") @ApiModelProperty("填写人")
private String txr; private String txr;
/** /**
* 日期标记,如:2021年01月 * 日期标记,如:2021年01月
*/ */
@ApiModelProperty("Tag") @ApiModelProperty("日期标记,如:2021年01月")
private String tag; private String tag;
......
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