Blame view

AccessTokenDO.java 621 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11
package com.subsidy.model;

import com.subsidy.util.BaseModel;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;

/**
 * <p>
涂亚平 committed
12
 * 
涂亚平 committed
13 14 15
 * </p>
 *
 * @author Tuyp
涂亚平 committed
16
 * @since 2024-08-09
涂亚平 committed
17 18 19
 */
@Data
@EqualsAndHashCode(callSuper = true)
涂亚平 committed
20 21
@TableName("access_token")
public class AccessTokenDO extends BaseModel {
涂亚平 committed
22 23 24 25

    private static final long serialVersionUID = 1L;

    @TableId(value = "id", type = IdType.AUTO)
涂亚平 committed
26
    private Integer id;
涂亚平 committed
27

涂亚平 committed
28
    private String accessToken;
涂亚平 committed
29 30 31


}