| 1234567891011121314151617181920212223242526272829303132333435 |
- package com.chuanghai.video.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.sql.Timestamp;
- @TableName("video_admin")
- @Data
- public class Admin {
- @TableId(value = "id", type = IdType.ASSIGN_ID)
- private String id;
- private String username;
- private String phone;
- private String adminType;
- private String password;
- private Timestamp createTime;
- private Timestamp updateTime;
- private Integer statu;
- private Integer sex;
- private String name;
- @TableField(exist=false)
- private Integer pageNum;
- @TableField(exist=false)
- private Integer pageSize;
- @TableField(exist=false)
- private Timestamp startTime;
- @TableField(exist=false)
- private Timestamp endTime;
- }
|