123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package com.fdkankan.tk.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2022-09-27
- */
- @Getter
- @Setter
- @TableName("t_tencent_yun")
- public class TencentYun implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 腾讯云相关
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- @TableField("appid")
- private String appid;
- @TableField("sdk_appid")
- private Long sdkAppid;
- @TableField("secretkey")
- private String secretkey;
- @TableField("bizid")
- private Integer bizid;
- @TableField("create_time")
- private String createTime;
- @TableField("update_time")
- private String updateTime;
- @TableField("tb_status")
- @TableLogic
- private Integer tbStatus;
- /**
- * 过期时间
- */
- @TableField("ex_time")
- private Integer exTime;
- @TableField("operator_type")
- private Integer operatorType;
- @TableField("platform")
- private String platform;
- }
|