package com.dy.pipIrrGlobal.voPr;
|
|
import com.dy.common.po.BaseEntity;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2023/12/21 9:28
|
* @LastEditTime 2023/12/21 9:28
|
* @Description
|
*/
|
|
@Data
|
@Schema(title = "分水房视图对象")
|
public class VoDivide implements BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
@Schema(title = "ID")
|
private Long id;
|
|
@Schema(title = "分水房名称")
|
private String divideName;
|
|
@Schema(title = "所属片区")
|
private String blockName;
|
|
@Schema(title = "负责人")
|
private String header;
|
|
@Schema(title = "联系电话")
|
private String phone;
|
|
@Schema(title = "归属地")
|
private String address;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
@Schema(title = "操作时间")
|
private Date operateDt;
|
}
|