pull/2/head
ASUS 2023-12-12 21:11:06 +08:00
parent 44ae184388
commit f9d6949bb6
2 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,33 @@
package com.bwie.common.pojo.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class VOLogMake {
/*
*/
private String carNum;
/*
*/
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date makeTime;
/*
id
*/
private Integer userId;
}

View File

@ -0,0 +1,29 @@
package com.bwie.common.pojo.vo;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class VOStop {
/*
*/
private String carNum;
/*
*/
private Integer stopPrice;
/*
*/
private Integer stopPay;
public VOStop(String carNum, Integer stopPrice) {
this.carNum = carNum;
this.stopPrice = stopPrice;
}
}