|
|
@@ -101,11 +101,17 @@ class DataLand extends \Google\Protobuf\Internal\Message
|
|
|
*/
|
|
|
protected $seed_status = 0;
|
|
|
/**
|
|
|
- * 下一阶段时间
|
|
|
+ * 当前阶段开始时间
|
|
|
*
|
|
|
- * Generated from protobuf field <code>int64 seed_next_times = 35;</code>
|
|
|
+ * Generated from protobuf field <code>int64 stage_start_times = 35;</code>
|
|
|
*/
|
|
|
- protected $seed_next_times = 0;
|
|
|
+ protected $stage_start_times = 0;
|
|
|
+ /**
|
|
|
+ * 当前阶段结束时间
|
|
|
+ *
|
|
|
+ * Generated from protobuf field <code>int64 stage_next_times = 36;</code>
|
|
|
+ */
|
|
|
+ protected $stage_next_times = 0;
|
|
|
|
|
|
/**
|
|
|
* Constructor.
|
|
|
@@ -142,8 +148,10 @@ class DataLand extends \Google\Protobuf\Internal\Message
|
|
|
* 植株ID
|
|
|
* @type int $seed_status
|
|
|
* 种子状态
|
|
|
- * @type int|string $seed_next_times
|
|
|
- * 下一阶段时间
|
|
|
+ * @type int|string $stage_start_times
|
|
|
+ * 当前阶段开始时间
|
|
|
+ * @type int|string $stage_next_times
|
|
|
+ * 当前阶段结束时间
|
|
|
* }
|
|
|
*/
|
|
|
public function __construct($data = NULL) {
|
|
|
@@ -518,27 +526,53 @@ class DataLand extends \Google\Protobuf\Internal\Message
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 下一阶段时间
|
|
|
+ * 当前阶段开始时间
|
|
|
+ *
|
|
|
+ * Generated from protobuf field <code>int64 stage_start_times = 35;</code>
|
|
|
+ * @return int|string
|
|
|
+ */
|
|
|
+ public function getStageStartTimes()
|
|
|
+ {
|
|
|
+ return $this->stage_start_times;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 当前阶段开始时间
|
|
|
+ *
|
|
|
+ * Generated from protobuf field <code>int64 stage_start_times = 35;</code>
|
|
|
+ * @param int|string $var
|
|
|
+ * @return $this
|
|
|
+ */
|
|
|
+ public function setStageStartTimes($var)
|
|
|
+ {
|
|
|
+ GPBUtil::checkInt64($var);
|
|
|
+ $this->stage_start_times = $var;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 当前阶段结束时间
|
|
|
*
|
|
|
- * Generated from protobuf field <code>int64 seed_next_times = 35;</code>
|
|
|
+ * Generated from protobuf field <code>int64 stage_next_times = 36;</code>
|
|
|
* @return int|string
|
|
|
*/
|
|
|
- public function getSeedNextTimes()
|
|
|
+ public function getStageNextTimes()
|
|
|
{
|
|
|
- return $this->seed_next_times;
|
|
|
+ return $this->stage_next_times;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 下一阶段时间
|
|
|
+ * 当前阶段结束时间
|
|
|
*
|
|
|
- * Generated from protobuf field <code>int64 seed_next_times = 35;</code>
|
|
|
+ * Generated from protobuf field <code>int64 stage_next_times = 36;</code>
|
|
|
* @param int|string $var
|
|
|
* @return $this
|
|
|
*/
|
|
|
- public function setSeedNextTimes($var)
|
|
|
+ public function setStageNextTimes($var)
|
|
|
{
|
|
|
GPBUtil::checkInt64($var);
|
|
|
- $this->seed_next_times = $var;
|
|
|
+ $this->stage_next_times = $var;
|
|
|
|
|
|
return $this;
|
|
|
}
|