src/main/java/com/aliyun/openservices/log/request/BatchGetLogRequest.java [71:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public String GetLogStore() {
		return mLogStore;
	}

	/**
	 * @param logStore the logStore to set
	 */
	public void SetLogStore(String logStore) {
		this.mLogStore = logStore;
	}
	
	/**
	 * @return the shardId
	 */
	public int GetShardId() {
		return mShardId;
	}

	/**
	 * @param shardId the shardId to set
	 */
	public void SetShardId(int shardId) {
		this.mShardId = shardId;
	}
	
	/**
	 * @return the cursor
	 */
	public String GetCursor() {
		return GetParam(Consts.CONST_CURSOR);
	}

	/**
	 * @param cursor the cursor to set
	 */
	public void SetCursor(String cursor) {
		SetParam(Consts.CONST_CURSOR, cursor);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/aliyun/openservices/log/request/GetCursorTimeRequest.java [22:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public String GetLogStore() {
		return mLogStore;
	}

	/**
	 * @param logStore
	 *            the logStore to set
	 */
	public void SetLogStore(String logStore) {
		this.mLogStore = logStore;
	}

	/**
	 * @return the shardId
	 */
	public int GetShardId() {
		return mShardId;
	}

	/**
	 * @param shardId
	 *            the shardId to set
	 */
	public void SetShardId(int shardId) {
		this.mShardId = shardId;
	}

	/**
	 * 
	 * @return the cursor to query
	 */
	public String GetCursor() {
		return GetParam(Consts.CONST_CURSOR);
	}

	/**
	 * 
	 * @param cursor
	 */
	public void SetCursor(String cursor) {
		SetParam(Consts.CONST_CURSOR, cursor);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



