package com.nova.sankuai.domain.vo; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; /** * @author weikangdi * @create 2021/11/10 */ @ApiModel("客户推送记录VO") @Data public class CustomerPushRecordVo { @ApiModelProperty(value = "主键") @JsonFormat(shape = JsonFormat.Shape.STRING) private Long id; @ApiModelProperty(value = "机构手机号") private String phone; @ApiModelProperty(value = "机构ID") @JsonFormat(shape = JsonFormat.Shape.STRING) private Long mechanismId; @ApiModelProperty(value = "机构名") private String mechanismName; @ApiModelProperty(value = "客户记录ID") private Long customerRecordId; @ApiModelProperty(value = "客户名") private String customerRecordName; @ApiModelProperty(value = "扣款记录ID") private Long deductionId; @ApiModelProperty(value = "创建时间") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date creationDate; @ApiModelProperty(value = "状态 0-正常 1-失效") private Integer status; @ApiModelProperty(value = "备注") private String memo; }