package com.ufida.api.vo; import java.io.Serializable; import java.util.List; /** * 凭证分录 贷 * @author Sunny * */ public class DebitVo implements Serializable { private static final long serialVersionUID = -4392661922171792211L; public DebitVo() {} public DebitVo(List entry) { this.entry = entry; } private List entry; public List getEntry() { return entry; } public void setEntry(List entry) { this.entry = entry; } }