EntContract.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntContract.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * 合同实体
  11. *
  12. * Generated from protobuf message <code>proto.api.EntContract</code>
  13. */
  14. class EntContract extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 合同ID
  18. *
  19. * Generated from protobuf field <code>int32 contract_id = 1;</code>
  20. */
  21. protected $contract_id = 0;
  22. /**
  23. * 门店ID
  24. *
  25. * Generated from protobuf field <code>int32 shop_id = 2;</code>
  26. */
  27. protected $shop_id = 0;
  28. /**
  29. * 合同标题
  30. *
  31. * Generated from protobuf field <code>string contract_title = 3;</code>
  32. */
  33. protected $contract_title = '';
  34. /**
  35. * 合同备注
  36. *
  37. * Generated from protobuf field <code>string contract_remark = 4;</code>
  38. */
  39. protected $contract_remark = '';
  40. /**
  41. * 是否展示
  42. *
  43. * Generated from protobuf field <code>.proto.api.YES_NO is_show = 5;</code>
  44. */
  45. protected $is_show = 0;
  46. /**
  47. * 合同创建时间
  48. *
  49. * Generated from protobuf field <code>int64 create_time = 6;</code>
  50. */
  51. protected $create_time = 0;
  52. /**
  53. * 还否删除
  54. *
  55. * Generated from protobuf field <code>.proto.api.YES_NO is_delete = 7;</code>
  56. */
  57. protected $is_delete = 0;
  58. /**
  59. * 合同类型
  60. *
  61. * Generated from protobuf field <code>.proto.api.CONTRACT_TYPE contract_type = 8;</code>
  62. */
  63. protected $contract_type = 0;
  64. /**
  65. * 合同详情
  66. *
  67. * Generated from protobuf field <code>.proto.api.ContractDetail contract_detail = 9;</code>
  68. */
  69. protected $contract_detail = null;
  70. /**
  71. * Constructor.
  72. *
  73. * @param array $data {
  74. * Optional. Data for populating the Message object.
  75. *
  76. * @type int $contract_id
  77. * 合同ID
  78. * @type int $shop_id
  79. * 门店ID
  80. * @type string $contract_title
  81. * 合同标题
  82. * @type string $contract_remark
  83. * 合同备注
  84. * @type int $is_show
  85. * 是否展示
  86. * @type int|string $create_time
  87. * 合同创建时间
  88. * @type int $is_delete
  89. * 还否删除
  90. * @type int $contract_type
  91. * 合同类型
  92. * @type \Proto\Api\ContractDetail $contract_detail
  93. * 合同详情
  94. * }
  95. */
  96. public function __construct($data = NULL) {
  97. \GPBMetadata\Api\EntContract::initOnce();
  98. parent::__construct($data);
  99. }
  100. /**
  101. * 合同ID
  102. *
  103. * Generated from protobuf field <code>int32 contract_id = 1;</code>
  104. * @return int
  105. */
  106. public function getContractId()
  107. {
  108. return $this->contract_id;
  109. }
  110. /**
  111. * 合同ID
  112. *
  113. * Generated from protobuf field <code>int32 contract_id = 1;</code>
  114. * @param int $var
  115. * @return $this
  116. */
  117. public function setContractId($var)
  118. {
  119. GPBUtil::checkInt32($var);
  120. $this->contract_id = $var;
  121. return $this;
  122. }
  123. /**
  124. * 门店ID
  125. *
  126. * Generated from protobuf field <code>int32 shop_id = 2;</code>
  127. * @return int
  128. */
  129. public function getShopId()
  130. {
  131. return $this->shop_id;
  132. }
  133. /**
  134. * 门店ID
  135. *
  136. * Generated from protobuf field <code>int32 shop_id = 2;</code>
  137. * @param int $var
  138. * @return $this
  139. */
  140. public function setShopId($var)
  141. {
  142. GPBUtil::checkInt32($var);
  143. $this->shop_id = $var;
  144. return $this;
  145. }
  146. /**
  147. * 合同标题
  148. *
  149. * Generated from protobuf field <code>string contract_title = 3;</code>
  150. * @return string
  151. */
  152. public function getContractTitle()
  153. {
  154. return $this->contract_title;
  155. }
  156. /**
  157. * 合同标题
  158. *
  159. * Generated from protobuf field <code>string contract_title = 3;</code>
  160. * @param string $var
  161. * @return $this
  162. */
  163. public function setContractTitle($var)
  164. {
  165. GPBUtil::checkString($var, True);
  166. $this->contract_title = $var;
  167. return $this;
  168. }
  169. /**
  170. * 合同备注
  171. *
  172. * Generated from protobuf field <code>string contract_remark = 4;</code>
  173. * @return string
  174. */
  175. public function getContractRemark()
  176. {
  177. return $this->contract_remark;
  178. }
  179. /**
  180. * 合同备注
  181. *
  182. * Generated from protobuf field <code>string contract_remark = 4;</code>
  183. * @param string $var
  184. * @return $this
  185. */
  186. public function setContractRemark($var)
  187. {
  188. GPBUtil::checkString($var, True);
  189. $this->contract_remark = $var;
  190. return $this;
  191. }
  192. /**
  193. * 是否展示
  194. *
  195. * Generated from protobuf field <code>.proto.api.YES_NO is_show = 5;</code>
  196. * @return int
  197. */
  198. public function getIsShow()
  199. {
  200. return $this->is_show;
  201. }
  202. /**
  203. * 是否展示
  204. *
  205. * Generated from protobuf field <code>.proto.api.YES_NO is_show = 5;</code>
  206. * @param int $var
  207. * @return $this
  208. */
  209. public function setIsShow($var)
  210. {
  211. GPBUtil::checkEnum($var, \Proto\Api\YES_NO::class);
  212. $this->is_show = $var;
  213. return $this;
  214. }
  215. /**
  216. * 合同创建时间
  217. *
  218. * Generated from protobuf field <code>int64 create_time = 6;</code>
  219. * @return int|string
  220. */
  221. public function getCreateTime()
  222. {
  223. return $this->create_time;
  224. }
  225. /**
  226. * 合同创建时间
  227. *
  228. * Generated from protobuf field <code>int64 create_time = 6;</code>
  229. * @param int|string $var
  230. * @return $this
  231. */
  232. public function setCreateTime($var)
  233. {
  234. GPBUtil::checkInt64($var);
  235. $this->create_time = $var;
  236. return $this;
  237. }
  238. /**
  239. * 还否删除
  240. *
  241. * Generated from protobuf field <code>.proto.api.YES_NO is_delete = 7;</code>
  242. * @return int
  243. */
  244. public function getIsDelete()
  245. {
  246. return $this->is_delete;
  247. }
  248. /**
  249. * 还否删除
  250. *
  251. * Generated from protobuf field <code>.proto.api.YES_NO is_delete = 7;</code>
  252. * @param int $var
  253. * @return $this
  254. */
  255. public function setIsDelete($var)
  256. {
  257. GPBUtil::checkEnum($var, \Proto\Api\YES_NO::class);
  258. $this->is_delete = $var;
  259. return $this;
  260. }
  261. /**
  262. * 合同类型
  263. *
  264. * Generated from protobuf field <code>.proto.api.CONTRACT_TYPE contract_type = 8;</code>
  265. * @return int
  266. */
  267. public function getContractType()
  268. {
  269. return $this->contract_type;
  270. }
  271. /**
  272. * 合同类型
  273. *
  274. * Generated from protobuf field <code>.proto.api.CONTRACT_TYPE contract_type = 8;</code>
  275. * @param int $var
  276. * @return $this
  277. */
  278. public function setContractType($var)
  279. {
  280. GPBUtil::checkEnum($var, \Proto\Api\CONTRACT_TYPE::class);
  281. $this->contract_type = $var;
  282. return $this;
  283. }
  284. /**
  285. * 合同详情
  286. *
  287. * Generated from protobuf field <code>.proto.api.ContractDetail contract_detail = 9;</code>
  288. * @return \Proto\Api\ContractDetail|null
  289. */
  290. public function getContractDetail()
  291. {
  292. return $this->contract_detail;
  293. }
  294. public function hasContractDetail()
  295. {
  296. return isset($this->contract_detail);
  297. }
  298. public function clearContractDetail()
  299. {
  300. unset($this->contract_detail);
  301. }
  302. /**
  303. * 合同详情
  304. *
  305. * Generated from protobuf field <code>.proto.api.ContractDetail contract_detail = 9;</code>
  306. * @param \Proto\Api\ContractDetail $var
  307. * @return $this
  308. */
  309. public function setContractDetail($var)
  310. {
  311. GPBUtil::checkMessage($var, \Proto\Api\ContractDetail::class);
  312. $this->contract_detail = $var;
  313. return $this;
  314. }
  315. }