TbStrTranslateLog.java 879 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.cretin.webdb.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.time.LocalDateTime;
  5. import java.io.Serializable;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. /**
  9. * <p>
  10. * APP国际化翻译表 操作日志
  11. * </p>
  12. *
  13. * @author Cretin
  14. * @since 2022-02-09
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = false)
  18. public class TbStrTranslateLog implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Integer id;
  22. /**
  23. * 操作者
  24. */
  25. private String translateUser;
  26. /**
  27. * 翻译内容
  28. */
  29. private String translateEn;
  30. /**
  31. * 翻译条目id
  32. */
  33. private Integer translateId;
  34. private LocalDateTime updateTime;
  35. }