|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import io.swagger.models.auth.In;
|
|
|
|
@ -38,10 +39,12 @@ public class WmsIbCheckPlan extends BaseBean{
|
|
|
|
|
private String partNameRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="START_DATE")
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value ="开始日期")
|
|
|
|
|
private String startDate;
|
|
|
|
|
|
|
|
|
|
@Column(name="END_DATE")
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value ="结束日期")
|
|
|
|
|
private String endDate;
|
|
|
|
|
|
|
|
|
@ -57,4 +60,20 @@ public class WmsIbCheckPlan extends BaseBean{
|
|
|
|
|
@ApiParam(value ="已抽点件数", example = "-1")
|
|
|
|
|
private Integer checkCounter;
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value="开始日期,查询开始日期")
|
|
|
|
|
public transient String startDateStart;
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value="开始日期,查询开始日期")
|
|
|
|
|
public transient String startDateEnd;
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value="结束日期,查询结束日期")
|
|
|
|
|
public transient String endDateStart;
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value = "结束日期,查询结束日期")
|
|
|
|
|
public transient String endDateEnd;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|