HistoryItemModleView.java
380 Bytes
package com.cnlive.goldenline.viewmodel;
import com.cnlive.goldenline.dao.History;
/**
* 创建:wukuiqing
* <p>
* 时间:2017/5/15
* <p>
* 描述:
*/
public class HistoryItemModleView {
History data;
public HistoryItemModleView(History data) {
this.data= data;
}
public String getContent(){
return data.getVdShowTitle();
}
}