| 1234567891011121314151617181920212223242526272829 |
- package com.cyksj.model.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import lombok.Getter;
- import lombok.Setter;
- /*
- *项目名: netflix
- *文件名: PhoneAreaCode
- *创建者: JavaZou
- *创建时间:2023/6/21 14:48
- */
- @Getter
- @Setter
- public class PhoneAreaCode {
- @TableId(type = IdType.AUTO)
- private Integer id;
- private String nameCn;
- private String nameUs;
- private Integer areaCode;
- private String continent;
- private Integer sorted;
- }
|