12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.huimv.admin.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.annotation.IdType;
- import java.time.LocalDateTime;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- *
- * </p>
- *
- * @author author
- * @since 2023-07-24
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("bill_luggage")
- public class BillLuggage implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 人员姓名
- */
- private String userName;
- private Integer userId;
- private String phone;
- /**
- * 寄存日期
- */
- private LocalDateTime luggageDate;
- /**
- * 寄存位置
- */
- private String luggageLocation;
- private Integer luggageLocationId;
- /**
- * 照片地址
- */
- private String articlePicUrl;
- }
|