12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * 系统服务
- */
- 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 <D_X0016_APPLYLIST_RECODE> applyList;//申请记录
- /**
- *申请记录
- */
- public void setApplyList(List <D_X0016_APPLYLIST_RECODE> applyList) {
- this.applyList=applyList;
- }
- /**
- *申请记录
- */
- public List <D_X0016_APPLYLIST_RECODE> getApplyList() {
- return this.applyList;
- }
- }
|