EmojiEntity.java 231 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package com.wd.comment.bean; /** * @author LiuKun * @date 2023/5/2 18:46 * @Description:表情 */ public class EmojiEntity { public String code; public EmojiEntity(String code) { this.code = code; } }