BackInfoTranslations.java 737 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.cyksj.model.entity;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. /**
  5. * 项目名: yhlxj2
  6. * 文件名: BackInfoTranslations
  7. * 创建者: JavaZou
  8. * 创建时间:2024/7/16 14:13
  9. */
  10. @Getter
  11. @Setter
  12. public class BackInfoTranslations extends BaseEntity{
  13. /**
  14. * 字段名
  15. */
  16. private String fieldName;
  17. /**
  18. * 类型主键id 如平台id
  19. */
  20. private Long funcId;
  21. /**
  22. * 类型
  23. */
  24. private Integer type;
  25. private String lang;
  26. /**
  27. * 英文表述
  28. */
  29. private String desp;
  30. @Getter
  31. public enum Type {
  32. goods("商品"),
  33. sku("规格"),
  34. spec("一级规格"),
  35. coupon("优惠券"),
  36. coupon_classification("优惠券分类"),
  37. ;
  38. String remark;
  39. Type(String remark) {
  40. this.remark = remark;
  41. }
  42. }
  43. }