All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.midcu.common.web.vo.BaseVo Maven / Gradle / Ivy

The newest version!
package com.midcu.common.web.vo;

import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;

import java.time.LocalDateTime;

@Data
public class BaseVo {

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
    private LocalDateTime createTime;

    private String createUser;

    private String createUserName;

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
    private LocalDateTime updateTime;

    private String updateUser;

    private String updateUserName;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy