20-db.html 23.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978


<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
  <meta charset="utf-8">
  
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  
  <title>2. 数据库设计 &mdash; code_serv 1.0 documentation</title>
  

  
  
  
  

  

  
  
    

  

  
  
    <link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
  

  

  
        <link rel="index" title="Index"
              href="genindex.html"/>
        <link rel="search" title="Search" href="search.html"/>
    <link rel="top" title="code_serv 1.0 documentation" href="index.html"/>
        <link rel="next" title="3. 简单编码接口" href="30-api-simple.html"/>
        <link rel="prev" title="1. 概述" href="10-summary.html"/> 

  
  <script src="_static/js/modernizr.min.js"></script>

</head>

<body class="wy-body-for-nav" role="document">

   
  <div class="wy-grid-for-nav">

    
    <nav data-toggle="wy-nav-shift" class="wy-nav-side">
      <div class="wy-side-scroll">
        <div class="wy-side-nav-search">
          

          
            <a href="index.html" class="icon icon-home"> code_serv
          

          
          </a>

          
            
            
              <div class="version">
                1.0
              </div>
            
          

          
<div role="search">
  <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
    <input type="text" name="q" placeholder="Search docs" />
    <input type="hidden" name="check_keywords" value="yes" />
    <input type="hidden" name="area" value="default" />
  </form>
</div>

          
        </div>

        <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
          
            
            
              
            
            
              <p class="caption"><span class="caption-text">Contents:</span></p>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="10-summary.html">1. 概述</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">2. 数据库设计</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#id2">2.1. 简单编码表</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#tb-code-cate">2.1.1. 简单编码类别表(tb_code_cate)</a></li>
<li class="toctree-l3"><a class="reference internal" href="#tb-code-simple">2.1.2. 简单编码表(tb_code_simple)</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="#id3">2.2. 事件编码表</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#tb-event-cates">2.2.1. 事件类别编码表(tb_event_cates)</a></li>
<li class="toctree-l3"><a class="reference internal" href="#tb-event-types">2.2.2. 事件类型编码表(tb_event_types)</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="#id4">2.3. 地区编码表</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#tb-code-country">2.3.1. 国家编码表(tb_code_country)</a></li>
<li class="toctree-l3"><a class="reference internal" href="#tb-code-province">2.3.2. 省编码表(tb_code_province)</a></li>
<li class="toctree-l3"><a class="reference internal" href="#tb-code-city">2.3.3. 市编码表(tb_code_city)</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="#id5">2.4. 交通编码表</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#tb-traffic-cate">2.4.1. 交通编码类别表(tb_traffic_cate)</a></li>
<li class="toctree-l3"><a class="reference internal" href="#tb-traffic-type">2.4.2. 类型编码表(tb_traffic_type)</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="#id6">2.5. 自定义编码表</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#tb-custom-cate">2.5.1. 自定义编码类别表(tb_custom_cate)</a></li>
<li class="toctree-l3"><a class="reference internal" href="#tb-custom-code">2.5.2. 自定义编码表(tb_custom_code)</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="30-api-simple.html">3. 简单编码接口</a></li>
<li class="toctree-l1"><a class="reference internal" href="40-api-event.html">4. 事件分类编码接口</a></li>
<li class="toctree-l1"><a class="reference internal" href="41-api-place.html">5. 地区类型编码接口</a></li>
<li class="toctree-l1"><a class="reference internal" href="42-api-traffic.html">6. 交通相关分类编码接口</a></li>
<li class="toctree-l1"><a class="reference internal" href="50-api-custom.html">7. 自定义编码接口</a></li>
<li class="toctree-l1"><a class="reference internal" href="99-history.html">8. 修订历史</a></li>
</ul>

            
          
        </div>
      </div>
    </nav>

    <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">

      
      <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
        
          <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
          <a href="index.html">code_serv</a>
        
      </nav>


      
      <div class="wy-nav-content">
        <div class="rst-content">
          















<div role="navigation" aria-label="breadcrumbs navigation">

  <ul class="wy-breadcrumbs">
    
      <li><a href="index.html">Docs</a> &raquo;</li>
        
      <li>2. 数据库设计</li>
    
    
      <li class="wy-breadcrumbs-aside">
        
            
            <a href="_sources/20-db.rst.txt" rel="nofollow"> View page source</a>
          
        
      </li>
    
  </ul>

  
  <hr/>
</div>
          <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
           <div itemprop="articleBody">
            
  <div class="section" id="id1">
<h1>2. 数据库设计<a class="headerlink" href="#id1" title="Permalink to this headline"></a></h1>
<blockquote>
<div><p>说明:</p>
<ul class="simple">
<li>表中不出现”是”的字段表示”否”。</li>
<li>所有外键都以另一个表的主键作为外键关联。</li>
</ul>
</div></blockquote>
<div class="section" id="id2">
<h2>2.1. 简单编码表<a class="headerlink" href="#id2" title="Permalink to this headline"></a></h2>
<div class="section" id="tb-code-cate">
<h3>2.1.1. 简单编码类别表(tb_code_cate)<a class="headerlink" href="#tb-code-cate" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="33%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>cate_unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>分类</td>
</tr>
<tr class="row-odd"><td>cate_code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td>&#160;</td>
<td>类别编码</td>
</tr>
<tr class="row-even"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=64</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-odd"><td>note</td>
<td></td>
<td>string</td>
<td>&lt;=1k</td>
<td>&#160;</td>
<td>说明</td>
</tr>
</tbody>
</table>
<dl class="docutils">
<dt>cate_code取值说明:</dt>
<dd><ul class="first last simple">
<li>sex:性别</li>
<li>card_type:证件类型</li>
<li>algo:算法</li>
<li>brand:品牌</li>
</ul>
</dd>
</dl>
</div></blockquote>
</div>
<div class="section" id="tb-code-simple">
<h3>2.1.2. 简单编码表(tb_code_simple)<a class="headerlink" href="#tb-code-simple" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="33%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>code_unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>分类</td>
</tr>
<tr class="row-odd"><td>cate</td>
<td><em></em></td>
<td>FK</td>
<td>&#160;</td>
<td>&#160;</td>
<td>分类</td>
</tr>
<tr class="row-even"><td>code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td>&#160;</td>
<td>编码</td>
</tr>
<tr class="row-odd"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=64</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-even"><td>note</td>
<td></td>
<td>string</td>
<td>&lt;=1k</td>
<td>&#160;</td>
<td>说明</td>
</tr>
</tbody>
</table>
<p>cate和code组合唯一
cate和name组合唯一</p>
</div></blockquote>
</div>
</div>
<div class="section" id="id3">
<h2>2.2. 事件编码表<a class="headerlink" href="#id3" title="Permalink to this headline"></a></h2>
<div class="section" id="tb-event-cates">
<h3>2.2.1. 事件类别编码表(tb_event_cates)<a class="headerlink" href="#tb-event-cates" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="20%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="32%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>event_cate_unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>分类</td>
</tr>
<tr class="row-odd"><td>code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td></td>
<td>事件类型编码</td>
</tr>
<tr class="row-even"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=64</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-odd"><td>note</td>
<td></td>
<td>string</td>
<td>&lt;=1k</td>
<td>&#160;</td>
<td>说明</td>
</tr>
</tbody>
</table>
<p>code取值说明:</p>
<blockquote>
<div><ul class="simple">
<li>face:人脸事件</li>
<li>border:周界事件</li>
<li>crowd:聚集事件</li>
<li>flow:客流事件</li>
<li>traffic:交通事件</li>
</ul>
</div></blockquote>
</div></blockquote>
</div>
<div class="section" id="tb-event-types">
<h3>2.2.2. 事件类型编码表(tb_event_types)<a class="headerlink" href="#tb-event-types" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="22%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="8%" />
<col width="32%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>event_type_unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>分类</td>
</tr>
<tr class="row-odd"><td>event_cate</td>
<td><em></em></td>
<td>FK</td>
<td>&#160;</td>
<td>&#160;</td>
<td>事件类型</td>
</tr>
<tr class="row-even"><td>code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td>&#160;</td>
<td>事件子类型编码</td>
</tr>
<tr class="row-odd"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=64</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-even"><td>note</td>
<td></td>
<td>string</td>
<td>&lt;=1k</td>
<td>&#160;</td>
<td>说明</td>
</tr>
</tbody>
</table>
<dl class="docutils">
<dt>注意:</dt>
<dd><ul class="first last simple">
<li>event_cate和code组合唯一</li>
</ul>
</dd>
</dl>
</div></blockquote>
</div>
</div>
<div class="section" id="id4">
<h2>2.3. 地区编码表<a class="headerlink" href="#id4" title="Permalink to this headline"></a></h2>
<div class="section" id="tb-code-country">
<h3>2.3.1. 国家编码表(tb_code_country)<a class="headerlink" href="#tb-code-country" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="33%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>country_unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>分类</td>
</tr>
<tr class="row-odd"><td>code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td></td>
<td>编码</td>
</tr>
<tr class="row-even"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=300</td>
<td></td>
<td>本地化名称</td>
</tr>
</tbody>
</table>
</div></blockquote>
</div>
<div class="section" id="tb-code-province">
<h3>2.3.2. 省编码表(tb_code_province)<a class="headerlink" href="#tb-code-province" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="33%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>province_unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>分类</td>
</tr>
<tr class="row-odd"><td>code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td>&#160;</td>
<td>编码</td>
</tr>
<tr class="row-even"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=300</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-odd"><td>country</td>
<td><em></em></td>
<td>FK</td>
<td>&#160;</td>
<td>&#160;</td>
<td>所在国家</td>
</tr>
</tbody>
</table>
<dl class="docutils">
<dt>注意:</dt>
<dd><ul class="first last simple">
<li>country和code组合唯一</li>
<li>country和name组合唯一</li>
</ul>
</dd>
</dl>
</div></blockquote>
</div>
<div class="section" id="tb-code-city">
<h3>2.3.3. 市编码表(tb_code_city)<a class="headerlink" href="#tb-code-city" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="33%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>city_unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>分类</td>
</tr>
<tr class="row-odd"><td>code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td>&#160;</td>
<td>市编码</td>
</tr>
<tr class="row-even"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=64</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-odd"><td>province</td>
<td><em></em></td>
<td>FK</td>
<td>&#160;</td>
<td>&#160;</td>
<td>所在省</td>
</tr>
</tbody>
</table>
<dl class="docutils">
<dt>注意:</dt>
<dd><ul class="first last simple">
<li>province和code组合唯一</li>
<li>province和name组合唯一</li>
</ul>
</dd>
</dl>
</div></blockquote>
</div>
</div>
<div class="section" id="id5">
<h2>2.4. 交通编码表<a class="headerlink" href="#id5" title="Permalink to this headline"></a></h2>
<div class="section" id="tb-traffic-cate">
<h3>2.4.1. 交通编码类别表(tb_traffic_cate)<a class="headerlink" href="#tb-traffic-cate" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="33%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>cate_unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>分类</td>
</tr>
<tr class="row-odd"><td>cate_code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>类别编码</td>
</tr>
<tr class="row-even"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=64</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-odd"><td>note</td>
<td></td>
<td>string</td>
<td>&lt;=1k</td>
<td>&#160;</td>
<td>说明</td>
</tr>
</tbody>
</table>
<dl class="docutils">
<dt>cate_code取值说明:</dt>
<dd><ul class="first last simple">
<li>lane_type:车道类型</li>
<li>plate_color:号牌颜色</li>
<li>plate_type:号牌类型</li>
<li>vehicle_color:车身颜色</li>
<li>vehicle_type:车辆类型</li>
<li>illegal_type:违法类型</li>
<li>gate_dir:卡口方向</li>
</ul>
</dd>
</dl>
</div></blockquote>
</div>
<div class="section" id="tb-traffic-type">
<h3>2.4.2. 类型编码表(tb_traffic_type)<a class="headerlink" href="#tb-traffic-type" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="33%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>code_unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>编码唯一id</td>
</tr>
<tr class="row-odd"><td>cate</td>
<td><em></em></td>
<td>FK</td>
<td>&#160;</td>
<td>&#160;</td>
<td>指向tb_traffic_cate的外键</td>
</tr>
<tr class="row-even"><td>code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td>&#160;</td>
<td>编码</td>
</tr>
<tr class="row-odd"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=64</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-even"><td>note</td>
<td></td>
<td>string</td>
<td>&lt;=1k</td>
<td>&#160;</td>
<td>说明</td>
</tr>
</tbody>
</table>
<p>cate和code组合唯一
cate和name组合唯一</p>
</div></blockquote>
</div>
</div>
<div class="section" id="id6">
<h2>2.5. 自定义编码表<a class="headerlink" href="#id6" title="Permalink to this headline"></a></h2>
<p>以下两个表是用户自定义的编码表,不是所有业务通用的。
例如人脸库,对于不同的应用是不同的。</p>
<div class="section" id="tb-custom-cate">
<h3>2.5.1. 自定义编码类别表(tb_custom_cate)<a class="headerlink" href="#tb-custom-cate" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="33%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>唯一id</td>
</tr>
<tr class="row-odd"><td>prj_name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td>&#160;</td>
<td>项目的名称,不同项目不一样。</td>
</tr>
<tr class="row-even"><td>cate</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td>&#160;</td>
<td>类别,只能是[字母,数字,_,-]</td>
</tr>
<tr class="row-odd"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=128</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-even"><td>note</td>
<td></td>
<td>string</td>
<td>&lt;=1k</td>
<td>&#160;</td>
<td>说明</td>
</tr>
</tbody>
</table>
<p><strong>prj_name和cate的组合唯一。</strong></p>
</div></blockquote>
</div>
<div class="section" id="tb-custom-code">
<h3>2.5.2. 自定义编码表(tb_custom_code)<a class="headerlink" href="#tb-custom-code" title="Permalink to this headline"></a></h3>
<blockquote>
<div><table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="14%" />
<col width="13%" />
<col width="12%" />
<col width="9%" />
<col width="33%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">字段名</th>
<th class="head">是否必填</th>
<th class="head">类型</th>
<th class="head">限制</th>
<th class="head">唯一</th>
<th class="head">说明</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>unid</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td><em></em></td>
<td>唯一id</td>
</tr>
<tr class="row-odd"><td>code</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=32</td>
<td>&#160;</td>
<td>编码,只能是[字母,数字,_,-]</td>
</tr>
<tr class="row-even"><td>cate</td>
<td><em></em></td>
<td>FK</td>
<td>&#160;</td>
<td>&#160;</td>
<td>指向tb_custom_cate的外键</td>
</tr>
<tr class="row-odd"><td>name</td>
<td><em></em></td>
<td>string</td>
<td>&lt;=128</td>
<td>&#160;</td>
<td>本地化名称</td>
</tr>
<tr class="row-even"><td>note</td>
<td></td>
<td>string</td>
<td>&lt;=1k</td>
<td>&#160;</td>
<td>说明</td>
</tr>
</tbody>
</table>
<p><strong>cate外键和code的组合唯一。</strong></p>
</div></blockquote>
</div>
</div>
</div>


           </div>
           <div class="articleComments">
            
           </div>
          </div>
          <footer>
  
    <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
      
        <a href="30-api-simple.html" class="btn btn-neutral float-right" title="3. 简单编码接口" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
      
      
        <a href="10-summary.html" class="btn btn-neutral" title="1. 概述" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
      
    </div>
  

  <hr/>

  <div role="contentinfo">
    <p>
        &copy; Copyright 2017, Yuan Chao.

    </p>
  </div>
  Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>. 

</footer>

        </div>
      </div>

    </section>

  </div>
  


  

    <script type="text/javascript">
        var DOCUMENTATION_OPTIONS = {
            URL_ROOT:'./',
            VERSION:'1.0',
            COLLAPSE_INDEX:false,
            FILE_SUFFIX:'.html',
            HAS_SOURCE:  true,
            SOURCELINK_SUFFIX: '.txt'
        };
    </script>
      <script type="text/javascript" src="_static/jquery.js"></script>
      <script type="text/javascript" src="_static/underscore.js"></script>
      <script type="text/javascript" src="_static/doctools.js"></script>

  

  
  
    <script type="text/javascript" src="_static/js/theme.js"></script>
  

  
  
  <script type="text/javascript">
      jQuery(function () {
          SphinxRtdTheme.StickyNav.enable();
      });
  </script>
   

</body>
</html>