BillLuggage.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.huimv.admin.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import java.time.LocalDateTime;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import java.io.Serializable;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import lombok.experimental.Accessors;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author author
  16. * @since 2023-07-24
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. @TableName("bill_luggage")
  22. public class BillLuggage implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. /**
  27. * 人员姓名
  28. */
  29. private String userName;
  30. private Integer userId;
  31. private String phone;
  32. /**
  33. * 寄存日期
  34. */
  35. private LocalDateTime luggageDate;
  36. /**
  37. * 寄存位置
  38. */
  39. private String luggageLocation;
  40. private Integer luggageLocationId;
  41. /**
  42. * 照片地址
  43. */
  44. private String articlePicUrl;
  45. }