person.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. <?php
  2. $status = Dever::config('base')->status;
  3. # 每页的数据量
  4. $page = 10;
  5. # 常用的col
  6. $col = '*';
  7. $yes = array
  8. (
  9. 1 => '是',
  10. 2 => '否',
  11. );
  12. return array
  13. (
  14. # 表名
  15. 'name' => 'person',
  16. # 显示给用户看的名称
  17. 'lang' => '虚拟角色',
  18. 'order' => 90,
  19. 'end' => array
  20. (
  21. 'insert' => array('content/lib/source.data?source_table=content/person'),
  22. 'update' => array('content/lib/source.data?source_table=content/person'),
  23. ),
  24. # 数据结构
  25. 'struct' => array
  26. (
  27. 'id' => array
  28. (
  29. 'type' => 'int-11',
  30. 'name' => 'ID',
  31. 'default' => '',
  32. 'desc' => '',
  33. 'match' => 'is_numeric',
  34. 'list' => true,
  35. ),
  36. 'name' => array
  37. (
  38. 'type' => 'varchar-80',
  39. 'name' => '姓名',
  40. 'default' => '',
  41. 'desc' => '姓名',
  42. 'match' => 'is_string',
  43. 'update' => 'text',
  44. 'list' => true,
  45. 'search' => 'fulltext',
  46. //增加预览
  47. 'preview' => true,
  48. ),
  49. 'desc' => array
  50. (
  51. 'type' => 'varchar-800',
  52. 'name' => '介绍',
  53. 'default' => '',
  54. 'desc' => '介绍',
  55. 'match' => 'is_string',
  56. 'update' => 'textarea',
  57. ),
  58. 'source_id' => array
  59. (
  60. 'type' => 'int-11',
  61. 'name' => '来源',
  62. 'default' => '1',
  63. 'desc' => '来源',
  64. 'match' => 'is_numeric',
  65. 'update' => 'select',
  66. //'option' => $author,
  67. 'search' => 'select',
  68. 'update_search' => 'content/lib/source.search',
  69. ),
  70. 'top' => array
  71. (
  72. 'type' => 'tinyint-1',
  73. 'name' => '是否推荐',
  74. 'default' => '2',
  75. 'desc' => '是否推荐',
  76. 'match' => 'is_numeric',
  77. 'update' => 'radio',
  78. 'option' => $yes,
  79. ),
  80. 'avatar' => array
  81. (
  82. 'type' => 'varchar-150',
  83. 'name' => '头像',
  84. 'default' => '',
  85. 'desc' => '头像',
  86. 'match' => 'option',
  87. 'update' => 'image',
  88. 'key' => '1',
  89. 'place' => '150*150',
  90. ),
  91. 'pic_cover' => array
  92. (
  93. 'type' => 'varchar-150',
  94. 'name' => '封面图',
  95. 'default' => '',
  96. 'desc' => '封面图',
  97. 'match' => 'option',
  98. 'update' => 'image',
  99. 'key' => '1',
  100. 'place' => '260*205',
  101. ),
  102. 'pic' => array
  103. (
  104. 'type' => 'text-255',
  105. 'name' => '多张图片',
  106. 'default' => '',
  107. 'desc' => '多张图片',
  108. 'match' => 'option',
  109. 'update' => 'images',
  110. 'key' => '1',
  111. //'place' => '345*200',
  112. ),
  113. 'profession' => array
  114. (
  115. 'type' => 'varchar-200',
  116. 'name' => '职业-多个用逗号隔开',
  117. 'default' => '',
  118. 'desc' => '职业',
  119. 'match' => 'is_string',
  120. 'update' => 'text',
  121. ),
  122. 'ability' => array
  123. (
  124. 'type' => 'varchar-800',
  125. 'name' => '能力标签-多个用逗号隔开',
  126. 'default' => '',
  127. 'desc' => '能力标签',
  128. 'match' => 'is_string',
  129. 'update' => 'text',
  130. ),
  131. 'education' => array
  132. (
  133. 'type' => 'varchar-100',
  134. 'name' => '学历',
  135. 'default' => '',
  136. 'desc' => '学历',
  137. 'match' => 'is_string',
  138. 'update' => 'text',
  139. ),
  140. 'bdate' => array
  141. (
  142. 'type' => 'int-11',
  143. 'name' => '生日',
  144. 'match' => 'is_numeric',
  145. 'default' => '',
  146. 'desc' => '',
  147. 'update' => 'date',
  148. 'callback' => 'maketime',
  149. ),
  150. 'phone' => array
  151. (
  152. 'type' => 'varchar-20',
  153. 'name' => '联系电话',
  154. 'default' => '',
  155. 'desc' => '联系电话',
  156. 'match' => 'option',
  157. 'update' => 'text',
  158. ),
  159. 'email' => array
  160. (
  161. 'type' => 'varchar-220',
  162. 'name' => '联系邮箱',
  163. 'default' => '',
  164. 'desc' => '联系邮箱',
  165. 'match' => 'option',
  166. 'update' => 'text',
  167. ),
  168. 'address' => array
  169. (
  170. 'type' => 'varchar-520',
  171. 'name' => '地址',
  172. 'default' => '',
  173. 'desc' => '地址',
  174. 'match' => 'option',
  175. 'update' => 'text',
  176. ),
  177. 'skill' => array
  178. (
  179. 'type' => 'text-1000',
  180. 'name' => '技能配置',
  181. 'default' => '',
  182. 'desc' => '技能配置',
  183. 'match' => 'is_string',
  184. 'update' => array
  185. (
  186. array
  187. (
  188. 'col' => 'name',
  189. 'name' => '技能名称',
  190. 'default' => '',
  191. 'desc' => '技能名称',
  192. 'match' => 'option',
  193. 'update' => 'text',
  194. ),
  195. array
  196. (
  197. 'col' => 'level',
  198. 'name' => '技能等级-满级为100',
  199. 'default' => '80',
  200. 'desc' => '技能等级',
  201. 'match' => 'is_string',
  202. 'update' => 'text',
  203. ),
  204. ),
  205. ),
  206. 'learn' => array
  207. (
  208. 'type' => 'text-1000',
  209. 'name' => '学习经历',
  210. 'default' => '',
  211. 'desc' => '学习经历',
  212. 'match' => 'is_string',
  213. 'update' => array
  214. (
  215. array
  216. (
  217. 'col' => 'name',
  218. 'name' => '名称',
  219. 'default' => '',
  220. 'desc' => '名称',
  221. 'match' => 'option',
  222. 'update' => 'text',
  223. ),
  224. array
  225. (
  226. 'col' => 'desc',
  227. 'name' => '描述-多个换行隔开',
  228. 'default' => '',
  229. 'desc' => '描述',
  230. 'match' => 'is_string',
  231. 'update' => 'textarea',
  232. ),
  233. ),
  234. ),
  235. 'life' => array
  236. (
  237. 'type' => 'text-1000',
  238. 'name' => '生活经历',
  239. 'default' => '',
  240. 'desc' => '生活经历',
  241. 'match' => 'is_string',
  242. 'update' => array
  243. (
  244. array
  245. (
  246. 'col' => 'name',
  247. 'name' => '名称',
  248. 'default' => '',
  249. 'desc' => '名称',
  250. 'match' => 'option',
  251. 'update' => 'text',
  252. ),
  253. array
  254. (
  255. 'col' => 'desc',
  256. 'name' => '描述-多个换行隔开',
  257. 'default' => '',
  258. 'desc' => '描述',
  259. 'match' => 'is_string',
  260. 'update' => 'textarea',
  261. ),
  262. ),
  263. ),
  264. 'reorder' => array
  265. (
  266. 'type' => 'int-11',
  267. 'name' => '排序(数值越大越靠前)',
  268. 'default' => '1',
  269. 'desc' => '请输入排序',
  270. 'match' => 'option',
  271. 'update' => 'text',
  272. 'search' => 'order',
  273. 'list' => true,
  274. 'order' => 'desc',
  275. 'edit' => true,
  276. ),
  277. 'udate' => array
  278. (
  279. 'type' => 'int-11',
  280. 'name' => '更新时间',
  281. 'match' => array('is_numeric', time()),
  282. 'desc' => '',
  283. ),
  284. 'status' => array
  285. (
  286. 'type' => 'int-11',
  287. 'name' => '发布状态',
  288. 'default' => '1',
  289. 'desc' => '发布状态',
  290. 'match' => 'is_numeric',
  291. //'update' => 'select',
  292. 'option' => $status,
  293. 'search' => 'select',
  294. 'list' => true,
  295. 'edit' => true,
  296. ),
  297. 'spider_data_id'=> array
  298. (
  299. 'type' => 'int-11',
  300. 'name' => '采集数据id',
  301. 'default' => '0',
  302. 'desc' => '采集数据id',
  303. 'match' => 'is_numeric',
  304. ),
  305. 'state' => array
  306. (
  307. 'type' => 'tinyint-1',
  308. 'name' => '状态',
  309. 'default' => '1',
  310. 'desc' => '请选择状态',
  311. 'match' => 'is_numeric',
  312. ),
  313. 'admin_founder' => array
  314. (
  315. 'type' => 'int-11',
  316. 'name' => '创建人',
  317. 'default' => '1',
  318. 'desc' => '创建人',
  319. 'match' => 'is_numeric',
  320. ),
  321. 'admin_editor' => array
  322. (
  323. 'type' => 'int-11',
  324. 'name' => '操作人',
  325. 'default' => '1',
  326. 'desc' => '操作人',
  327. 'match' => 'is_numeric',
  328. ),
  329. 'cdate' => array
  330. (
  331. 'type' => 'int-11',
  332. 'name' => '录入时间',
  333. 'match' => array('is_numeric', time()),
  334. 'desc' => '',
  335. # 只有insert时才生效
  336. 'insert' => true,
  337. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  338. ),
  339. ),
  340. # 管理功能
  341. 'manage' => array
  342. (
  343. 'button' => array
  344. (
  345. '来源管理' => array('list', 'source&oper_parent=person'),
  346. ),
  347. //'insert' => false,
  348. # 列表
  349. 'list_button' => array
  350. (
  351. //'edit' => array('预览', str_replace('https://api.', 'http://www.', Dever::url('main/preview.get?type=1'))),
  352. ),
  353. ),
  354. # request 请求接口定义
  355. 'request' => array
  356. (
  357. 'search' => array
  358. (
  359. # 匹配的正则或函数 选填项
  360. 'option' => array
  361. (
  362. 'ids' => array('yes-id', 'in'),
  363. 'source_id' => 'yes',
  364. 'name' => array('yes', 'like'),
  365. 'id' => 'yes',
  366. 'state' => 1,
  367. ),
  368. 'type' => 'all',
  369. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  370. 'limit' => '0,1000',
  371. 'col' => 'name as name, id, id as value, "" as selected, "" as disabled|id',
  372. ),
  373. 'getAll' => array
  374. (
  375. # 匹配的正则或函数 选填项
  376. 'option' => array
  377. (
  378. 'source_id' => 'yes',
  379. 'id' => 'yes',
  380. 'status' => 1,
  381. 'state' => 1,
  382. ),
  383. 'type' => 'all',
  384. 'order' => array('reorder' => 'desc','id' => 'desc'),
  385. 'page' => array($page, 'list'),
  386. 'col' => $col,
  387. ),
  388. # 获取首页推荐
  389. 'getTop' => array
  390. (
  391. # 匹配的正则或函数 选填项
  392. 'option' => array
  393. (
  394. 'status' => 1,
  395. 'state' => 1,
  396. ),
  397. 'type' => 'all',
  398. 'order' => array('top' => 'asc', 'reorder' => 'desc','id' => 'desc'),
  399. 'limit' => '0,1',
  400. 'col' => $col,
  401. ),
  402. 'getList' => array
  403. (
  404. # 匹配的正则或函数 选填项
  405. 'option' => array
  406. (
  407. 'source_id' => 'yes',
  408. 'status' => 1,
  409. 'state' => 1,
  410. ),
  411. 'type' => 'all',
  412. 'order' => array('reorder' => 'desc','id' => 'desc'),
  413. 'limit' => '0,10',
  414. 'col' => $col,
  415. ),
  416. 'getRelation' => array
  417. (
  418. # 匹配的正则或函数 选填项
  419. 'option' => array
  420. (
  421. 'source_id' => 'yes',
  422. 'noid' => array('yes-id', '!='),
  423. 'status' => 1,
  424. 'state' => 1,
  425. ),
  426. 'type' => 'all',
  427. 'order' => array('reorder' => 'desc','id' => 'desc'),
  428. 'limit' => '0,2',
  429. 'col' => $col,
  430. ),
  431. 'getOne' => array
  432. (
  433. # 匹配的正则或函数 选填项
  434. 'where' => array
  435. (
  436. 'id' => 'yes',
  437. ),
  438. 'type' => 'one',
  439. 'col' => $col,
  440. ),
  441. ),
  442. );