123456789101112131415161718192021222324252627282930313233343536 |
- package com.huimv.cattle.pojo;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.Version;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * <p>
- *
- * </p>
- *
- * @author zn
- * @since 2022-12-14
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class PreventDetection implements Serializable {
- private static final long serialVersionUID=1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- private String monthName;
- private Integer month;
- private Integer detectionNum;
- private Integer acceptanceNum;
- }
|