12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package com.fjs.scenic.entity.system;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import lombok.Data;
- import java.io.Serializable;
- import java.time.LocalDate;
- import java.util.Date;
- /**
- * (InputInfo)实体类
- *
- * @author lfj
- * @since 2021-09-30 15:20:54
- */
- @Data
- public class InputInfo implements Serializable {
- private static final long serialVersionUID = 685778159669072758L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 公司名
- */
- private String company;
- /**
- * 景区名
- */
- private String scenic;
- /**
- * 合计金额
- */
- private Integer total;
- /**
- * 合计人次
- */
- private Integer personTimes;
- /**
- * 统计日期
- */
- private LocalDate staticDate;
- /**
- * 创建时间
- */
- private LocalDate createTime;
- /**
- * 上传人
- */
- private String manager;
- }
|