InputInfo.java 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.fjs.scenic.entity.system;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. import java.time.LocalDate;
  7. import java.util.Date;
  8. /**
  9. * (InputInfo)实体类
  10. *
  11. * @author lfj
  12. * @since 2021-09-30 15:20:54
  13. */
  14. @Data
  15. public class InputInfo implements Serializable {
  16. private static final long serialVersionUID = 685778159669072758L;
  17. @TableId(value = "id", type = IdType.AUTO)
  18. private Integer id;
  19. /**
  20. * 公司名
  21. */
  22. private String company;
  23. /**
  24. * 景区名
  25. */
  26. private String scenic;
  27. /**
  28. * 合计金额
  29. */
  30. private Integer total;
  31. /**
  32. * 合计人次
  33. */
  34. private Integer personTimes;
  35. /**
  36. * 统计日期
  37. */
  38. private LocalDate staticDate;
  39. /**
  40. * 创建时间
  41. */
  42. private LocalDate createTime;
  43. /**
  44. * 上传人
  45. */
  46. private String manager;
  47. }