You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
525 B
24 lines
525 B
package club.pojo;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
@Data
|
|
public class Apply {
|
|
private Integer id;
|
|
private String name;
|
|
private String email;
|
|
private Integer age;
|
|
private String telephone;
|
|
private String message;
|
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
private Date applyTime;
|
|
private Integer state;
|
|
|
|
}
|