package com.dy.pipIrrGlobal.voSe;
|
|
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/22 11:43
|
* @LastEditTime 2023/12/22 11:43
|
* @Description
|
*/
|
|
@Data
|
@Schema(title = "农户视图对象")
|
public class VoClient implements BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
@Schema(title = "ID")
|
private Long id;
|
|
@Schema(title = "农户ID")
|
private String clientId;
|
|
@Schema(title = "农户姓名")
|
private String name;
|
|
@Schema(title = "农户编号")
|
private String clientNum;
|
|
@Schema(title = "手机号")
|
private String phone;
|
|
@Schema(title = "身份证号")
|
private String idCard;
|
|
@Schema(title = "卡片数量")
|
private Integer cardCount;
|
|
@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;
|
|
|
}
|