123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 待审核商标转让声明公证列表查询
- */
- public class A_X0016 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String startTime;//开始时间
- /**
- *开始时间
- */
- public void setStartTime(String startTime) {
- this.startTime=startTime;
- }
- /**
- *开始时间
- */
- public String getStartTime() {
- return this.startTime;
- }
- String endTime;//结束时间
- /**
- *结束时间
- */
- public void setEndTime(String endTime) {
- this.endTime=endTime;
- }
- /**
- *结束时间
- */
- public String getEndTime() {
- return this.endTime;
- }
- String copyrightType;//类型
- /**
- *类型
- */
- public void setCopyrightType(String copyrightType) {
- this.copyrightType=copyrightType;
- }
- /**
- *类型
- */
- public String getCopyrightType() {
- return this.copyrightType;
- }
- String applyState;//登记状态
- /**
- *登记状态
- */
- public void setApplyState(String applyState) {
- this.applyState=applyState;
- }
- /**
- *登记状态
- */
- public String getApplyState() {
- return this.applyState;
- }
- String trustee;//托管机构
- /**
- *托管机构
- */
- public void setTrustee(String trustee) {
- this.trustee=trustee;
- }
- /**
- *托管机构
- */
- public String getTrustee() {
- return this.trustee;
- }
- String copyrightName;//名称
- /**
- *名称
- */
- public void setCopyrightName(String copyrightName) {
- this.copyrightName=copyrightName;
- }
- /**
- *名称
- */
- public String getCopyrightName() {
- return this.copyrightName;
- }
- String isNcrExit;//公证书是否已经申请
- /**
- *公证书是否已经申请
- */
- public void setIsNcrExit(String isNcrExit) {
- this.isNcrExit=isNcrExit;
- }
- /**
- *公证书是否已经申请
- */
- public String getIsNcrExit() {
- return this.isNcrExit;
- }
- int startPage;//起始页数
- /**
- *起始页数
- */
- public void setStartPage(int startPage) {
- this.startPage=startPage;
- }
- /**
- *起始页数
- */
- public int getStartPage() {
- return this.startPage;
- }
- int pageSize;//每页行数
- /**
- *每页行数
- */
- public void setPageSize(int pageSize) {
- this.pageSize=pageSize;
- }
- /**
- *每页行数
- */
- public int getPageSize() {
- return this.pageSize;
- }
- String auditorState;//审核状态
- /**
- *审核状态
- */
- public void setAuditorState(String auditorState) {
- this.auditorState=auditorState;
- }
- /**
- *审核状态
- */
- public String getAuditorState() {
- return this.auditorState;
- }
- }
|