PhoneAreaCode.java 518 B

1234567891011121314151617181920212223242526272829
  1. package com.cyksj.model.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. /*
  7. *项目名: netflix
  8. *文件名: PhoneAreaCode
  9. *创建者: JavaZou
  10. *创建时间:2023/6/21 14:48
  11. */
  12. @Getter
  13. @Setter
  14. public class PhoneAreaCode {
  15. @TableId(type = IdType.AUTO)
  16. private Integer id;
  17. private String nameCn;
  18. private String nameUs;
  19. private Integer areaCode;
  20. private String continent;
  21. private Integer sorted;
  22. }