package com.newfiber.api.pc.model.entity; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import com.baomidou.mybatisplus.enums.IdType; import lombok.Data; import java.io.Serializable; /** * @ClassName SmsTemplatePhone * @Description TODO * @Author 张鸿志 * @Date 2021年8月4日16:19:10 16:19 * Version 1.0 **/ @Data @TableName("sms_template_phone") public class SmsTemplatePhone implements Serializable { @TableId(value = "id",type = IdType.AUTO) private Integer id; @TableField("sms_template_code") private String smsTemplateCode; @TableField("phone") private String phone; @TableField("user_name") private String userName; }