NewsVO.java
283 Bytes
package com.laowu.vo.lables;
import com.laowu.model.NewsDictDO;
import com.laowu.model.NewsLabelDictDO;
import lombok.Data;
import java.util.List;
@Data
public class NewsVO extends NewsDictDO {
private String userName;
private List<NewsLabelDictDO> newsLabelDictDOS;
}