Blame view

AdministerDO.java 908 Bytes
涂亚平 committed
1 2 3 4 5 6
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;
涂亚平 committed
7
import java.time.LocalDateTime;
涂亚平 committed
8 9 10 11 12
import lombok.Data;
import lombok.EqualsAndHashCode;

/**
 * <p>
涂亚平 committed
13
 * 中心管理账户表
涂亚平 committed
14 15 16
 * </p>
 *
 * @author Tuyp
涂亚平 committed
17
 * @since 2025-01-08
涂亚平 committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("administer")
public class AdministerDO extends BaseModel {

    private static final long serialVersionUID = 1L;

    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;

    /**
     * 手机号
     */
    private String telephone;

    /**
     * 成员名称
     */
涂亚平 committed
40
    private String username;
涂亚平 committed
41 42 43 44

    /**
     * 头像
     */
涂亚平 committed
45
    private String avatar;
涂亚平 committed
46 47

    /**
涂亚平 committed
48
     * 角色
涂亚平 committed
49
     */
涂亚平 committed
50
    private String role;
涂亚平 committed
51 52

}