SalesCattle.java 776 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.huimv.cattle.pojo;
  2. import java.math.BigDecimal;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.Version;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import java.io.Serializable;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. /**
  10. * <p>
  11. *
  12. * </p>
  13. *
  14. * @author zn
  15. * @since 2022-12-15
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. public class SalesCattle implements Serializable {
  20. private static final long serialVersionUID=1L;
  21. @TableId(value = "id", type = IdType.AUTO)
  22. private Integer id;
  23. private Integer year;
  24. private String quarterName;
  25. private Integer quarter;
  26. private Integer salesCount;
  27. private BigDecimal salesMoney;
  28. private String farmCode;
  29. }