/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; import java.util.*; /** * 待审核商标转让声明公证列表查询 */ public class D_X0016 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; long totalRows;//总记录行数 /** *总记录行数 */ public void setTotalRows(long totalRows) { this.totalRows=totalRows; } /** *总记录行数 */ public long getTotalRows() { return this.totalRows; } long rowsCount;//记录 /** *记录 */ public void setRowsCount(long rowsCount) { this.rowsCount=rowsCount; } /** *记录 */ public long getRowsCount() { return this.rowsCount; } List applyList;//申请记录 /** *申请记录 */ public void setApplyList(List applyList) { this.applyList=applyList; } /** *申请记录 */ public List getApplyList() { return this.applyList; } }