mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.panzhihua.service_equipment.model.dos;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 开门记录表
 * </p>
 *
 * @author fengjin
 * @since 2023-09-20
 */
@TableName("union_open_door")
@Data
@ApiModel("开门记录表")
public class UnionOpenDoor implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * ,主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty(value = "主键")
    private Long id;
 
    /**
     * 站点id
     */
    @ApiModelProperty(value = "站点id")
    private Integer siteId;
 
    /**
     * 用户id
     */
    @ApiModelProperty(value = "用户id")
    private Long userId;
 
    /**
     * 创建时间
     */
    @ApiModelProperty(value = " 创建时间")
    private LocalDateTime createAt;
 
    /**
     * 1 获得积分开门 2 普通开门不活动积分
     */
    @ApiModelProperty(value = " 1 获得积分开门 2 普通开门不活动积分")
    private Integer type;
 
}