|
@@ -3,10 +3,30 @@ package com.fdkankan.manage_jp.vo.request;
|
|
|
import com.fdkankan.manage_jp.common.RequestBase;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
@Data
|
|
|
public class ColdStorageParam extends RequestBase {
|
|
|
private Integer type = 0;
|
|
|
private String userName;
|
|
|
+
|
|
|
+ private List<String> timeList;
|
|
|
private String shootingStartTime;
|
|
|
private String shootingEndTime;
|
|
|
+
|
|
|
+ public String getShootingStartTime() {
|
|
|
+ if(timeList != null && timeList.size() >0){
|
|
|
+ return timeList.get(0)+" 00:00:00";
|
|
|
+ }
|
|
|
+ return shootingStartTime;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public String getShootingEndTime() {
|
|
|
+ if(timeList != null && timeList.size() >0){
|
|
|
+ return timeList.get(1)+ " 23:59:59";
|
|
|
+ }
|
|
|
+ return shootingEndTime;
|
|
|
+ }
|
|
|
+
|
|
|
}
|