開放都市-委員會會議記錄資料庫 資料結構

編輯歷史

時間 作者 版本
2017-04-27 09:49 Richard Hsieh r1400
顯示 diff
(162 行未修改)
2017-03-28 09:48 – 09:49 Richard Hsieh r1383 – r1399
顯示 diff
(36 行未修改)
*note_code: CHAR(9) (non-unique index)
*case_code: VARCHAR(12) (non-unique index)
+ *petition_case: TEXT
*petition_num: VARCHAR(10) //陳情案編號
*name: VARCHAR(100)
(121 行未修改)
2017-03-27 10:08 – 10:08 Richard Hsieh r1376 – r1382
顯示 diff
(52 行未修改)
*ronny建議要有搜尋功能的話,就利用google drive存放資料
* 裝上google drive api的example,租用的主機不給跑@@ 回傳error500
+ *貌似需要UUID跟時間戳記
*跨會議記錄文件之間的資料關係
(104 行未修改)
2017-03-21 03:49 – 03:51 Richard Hsieh r1349 – r1375
顯示 diff
(3 行未修改)
*MySQL資料結構
note_table: //會議紀錄meta
- *id: INT
+ *id: INT(10) (AI)
*origin: VARCHAR(100) (url) //原始文件
*admin: CHAR(4) //行政區+改制前後(O/N) e.g. TPEO(台北市), KHHN(高雄市改制後)
(12 行未修改)
*
case_table: //案件列表
- *id: INT
+ *id: INT(10) (AI)
*note_code: CHAR(9) (non-unique index)
*type: TINYINT(1) (1=report/2=confirm/3=deliberate/4=discuss/5=extempore)
- *title: TINYTEXT //案名
- *case_code: VARCHAR(6) (non-unique index) //亂碼編號?
+ *case_title: TINYTEXT //案名
+ *case_code: VARCHAR(6) (non-unique index) //亂碼編號
*description: TEXT (json format)
*committee_speak: TEXT (json format)
(4 行未修改)
*
petition_table: //陳情案列表
- *id: INT
+ *id: INT(10) (AI)
*note_code: CHAR(9) (non-unique index)
*case_code: VARCHAR(12) (non-unique index)
(122 行未修改)
2017-03-19 09:50 – 09:50 Richard Hsieh r1342 – r1348
顯示 diff
開放都市-委員會會議記錄資料庫 資料結構
專案母體:委員會會議記錄資料庫
-
- *資料結構討論
- *現在以 json 的方式將會議記錄結構化 (NoSQL?) example
- *如果要製作搜尋功能,是不是要改成SQL?
- *租用的主機是 php + MySQL 5.6
- *MySQL 5.7 新增對於 json資料的支援 http://voicefromoldsoul.blogspot.tw/2017/01/mysql-json.html
- *ronny建議要有搜尋功能的話,就利用google drive存放資料
- * 裝上google drive api的example,租用的主機不給跑@@ 回傳error500
-
- *跨會議記錄文件之間的資料關係
- *
- *提問:是否會有案名變更的情況?例如案名文字修改
- *有時候會有,或是合併審理之類的,所以資料庫結構可能要對案件index
- *MySQL資料結構規劃
+ *MySQL資料結構
note_table: //會議紀錄meta
*id: INT
(30 行未修改)
*note_code: CHAR(9) (non-unique index)
*case_code: VARCHAR(12) (non-unique index)
- *petition_num: VARCHAR(1) //陳情案編號
- *pame: sVARCHAR(100)*location: sVARCHAR(10)*reason: stTEXT (json format)
- *suggeststTEXTjson format)
- *response: stTEXTjson format)
- *adhoc: stTEXTjson format)
- *resolution: stTEXTjson format)
+ *petition_num: VARCHAR(10) //陳情案編號
+ *name: VARCHAR(100)
+ *location: VARCHAR(100)
+ *reason: TEXT (json format)
+ *suggest: TEXT (json format)
+ *response: TEXT (json format)
+ *adhoc: TEXT (json format)
+ *resolution: TEXT (json format)
+ *
+ *資料結構討論
+ *現在以 json 的方式將會議記錄結構化 (NoSQL?) example
+ *如果要製作搜尋功能,是不是要改成SQL?
+ *租用的主機是 php + MySQL 5.6
+ *MySQL 5.7 新增對於 json資料的支援 http://voicefromoldsoul.blogspot.tw/2017/01/mysql-json.html
+ *ronny建議要有搜尋功能的話,就利用google drive存放資料
+ * 裝上google drive api的example,租用的主機不給跑@@ 回傳error500
- *會議紀錄文件結構歸納
+ *跨會議記錄文件之間的資料關係
+ *
+ *提問:是否會有案名變更的情況?例如案名文字修改
+ *有時候會有,或是合併審理之類的,所以資料庫結構可能要對案件index
+
+ 會議紀錄文件結構歸納
*1.標題
* a.委員會名稱
(97 行未修改)
2017-03-17 06:32 – 06:32 Richard Hsieh r1338 – r1341
顯示 diff
(31 行未修改)
*attend_committee: TEXT (json format)
*attend_unit: TEXT (json format)
- *report_item: TINYTEXT (case_code, comma separated)
- *confirm_item: TINYTEXT (case_code, comma separated)
- *deliberate_item: TINYTEXT (case_code, comma separated)
- *discuss_item: TINYTEXT (case_code, comma separated)
- *extempore_item: TINYTEXT (case_code, comma separated)
-
+ *
case_table: //案件列表
*id: INT
(8 行未修改)
*add_resolution: TEXT (json format)
*attached: TEXT (url)
- *petition: TINYTEXT (petition_code, comma separate)
-
+ *
petition_table: //陳情案列表
*id: INT
(1 行未修改)
*case_code: VARCHAR(12) (non-unique index)
*petition_num: VARCHAR(1) //陳情案編號
- *petition_code: sVARCHAR(26)(unique) //note_code+case_code+'P'+petition_num
- *name: sVARCHAR(100)*location: sVARCHAR(10)*reason: stTEXT (json format)
+ *pame: sVARCHAR(100)*location: sVARCHAR(10)*reason: stTEXT (json format)
*suggeststTEXTjson format)
*response: stTEXTjson format)
(103 行未修改)
2017-03-09 10:27 – 10:31 Richard Hsieh r1336 – r1337
顯示 diff
(165 行未修改)
2017-03-09 06:48 – 06:53 Richard Hsieh r1329 – r1335
顯示 diff
(42 行未修改)
*type: TINYINT(1) (1=report/2=confirm/3=deliberate/4=discuss/5=extempore)
*title: TINYTEXT //案名
- *case_code: VARCHAR(12) (non-unique index) //亂碼編號?
+ *case_code: VARCHAR(6) (non-unique index) //亂碼編號?
*description: TEXT (json format)
*committee_speak: TEXT (json format)
(9 行未修改)
*case_code: VARCHAR(12) (non-unique index)
*petition_num: VARCHAR(1) //陳情案編號
- *petition_code: sVARCHAR(32)(unique) //note_code+case_code+'P'+petition_num
+ *petition_code: sVARCHAR(26)(unique) //note_code+case_code+'P'+petition_num
*name: sVARCHAR(100)*location: sVARCHAR(10)*reason: stTEXT (json format)
*suggeststTEXTjson format)
(104 行未修改)
2017-03-09 04:18 – 04:25 Richard Hsieh r1289 – r1328
顯示 diff
(38 行未修改)
case_table: //案件列表
- *id: integer
- *note_code: string (non-unique index)
- *type: integer (1=report/2=confirm/3=deliberate/4=discuss/5=extempore)
- *title: string //案名
- *case_code: string (non-unique index) //亂碼編號?
- *description: string (json format)
- *committee_speak: string (json format)
- *response: string (json format)
- *resolution: string (json format)
- *add_resolution: string (json format)
- *attached: string (url)
- *petition: string (petition_code, comma separate)
+ *id: INT
+ *note_code: CHAR(9) (non-unique index)
+ *type: TINYINT(1) (1=report/2=confirm/3=deliberate/4=discuss/5=extempore)
+ *title: TINYTEXT //案名
+ *case_code: VARCHAR(12) (non-unique index) //亂碼編號?
+ *description: TEXT (json format)
+ *committee_speak: TEXT (json format)
+ *response: TEXT (json format)
+ *resolution: TEXT (json format)
+ *add_resolution: TEXT (json format)
+ *attached: TEXT (url)
+ *petition: TINYTEXT (petition_code, comma separate)
petition_table: //陳情案列表
- *id: integer
- *note_code: string (non-unique index)
- *case_code: string (non-unique index)
- *petition_num: string //陳情案編號
- *petition_code: string (unique) //note_code+case_code+'P'+petition_num
- *name: string
- *location: string
- *reason: string (json format)
- *suggest: string (json format)
- *response: string (json format)
- *adhoc: string (json format)
- *resolution: string (json format)
+ *id: INT
+ *note_code: CHAR(9) (non-unique index)
+ *case_code: VARCHAR(12) (non-unique index)
+ *petition_num: VARCHAR(1) //陳情案編號
+ *petition_code: sVARCHAR(32)(unique) //note_code+case_code+'P'+petition_num
+ *name: sVARCHAR(100)*location: sVARCHAR(10)*reason: stTEXT (json format)
+ *suggeststTEXTjson format)
+ *response: stTEXTjson format)
+ *adhoc: stTEXTjson format)
+ *resolution: stTEXTjson format)
*會議紀錄文件結構歸納
(99 行未修改)
2017-03-08 16:07 – 16:23 Richard Hsieh r1225 – r1288
顯示 diff
(17 行未修改)
note_table: //會議紀錄meta
*id: INT
- *origin: VARCHAR (url) //原始文件
+ *origin: VARCHAR(100) (url) //原始文件
*admin: CHAR(4) //行政區+改制前後(O/N) e.g. TPEO(台北市), KHHN(高雄市改制後)
*session: INT(4) //第n次會議
- *round: integer //紀錄是否續會 e.g. 1=首次召開, 2=續會, 3=續會第二次
- *note_code: string (unique) //admin+session+round e.g TPEO6731
- *title: string //會議記錄title
- *date: date
- *start_time: time
- *end_time: time
- *location: string
- *chairman: string
- *note_taker: string
- *attend_committee: string (json format)
- *attend_unit: string (json format)
- *report_item: string (case_code, comma separated)
- *confirm_item: string (case_code, comma separated)
- *deliberate_item: string (case_code, comma separated)
- *discuss_item: string (case_code, comma separated)
- *extempore_item: string (case_code, comma separated)
+ *round: TINYINT(1)//紀錄是否續會 e.g. 1=首次召開, 2=續會, 3=續會第二次
+ *note_code: CHAR(9) (unique) //admin+session+round e.g TPEO6731
+ *title: VARCHAR(100) //會議記錄title
+ *date: DATE
+ *start_time: TIME
+ *end_time: TIME
+ *location: VARCHAR(100)
+ *chairman: VARCHAR(12)
+ *note_taker: VARCHAR(12)
+ *attend_committee: TEXT (json format)
+ *attend_unit: TEXT (json format)
+ *report_item: TINYTEXT (case_code, comma separated)
+ *confirm_item: TINYTEXT (case_code, comma separated)
+ *deliberate_item: TINYTEXT (case_code, comma separated)
+ *discuss_item: TINYTEXT (case_code, comma separated)
+ *extempore_item: TINYTEXT (case_code, comma separated)
case_table: //案件列表
(127 行未修改)
2017-03-08 14:12 – 14:27 Richard Hsieh r1155 – r1224
顯示 diff
(15 行未修改)
*MySQL資料結構規劃
- note: //會議紀錄meta
- *id: integer
- *origin: string (url) //原始文件
- *admin: string //行政區+改制前後(O/N) e.g. TPEO(台北市), KHHN(高雄市改制後)
- *session: integer //第n次會議
- *note_code: string (unique) //admin+session e.g TPEO673
+ note_table: //會議紀錄meta
+ *id: INT
+ *origin: VARCHAR (url) //原始文件
+ *admin: CHAR(4) //行政區+改制前後(O/N) e.g. TPEO(台北市), KHHN(高雄市改制後)
+ *session: INT(4) //第n次會議
+ *round: integer //紀錄是否續會 e.g. 1=首次召開, 2=續會, 3=續會第二次
+ *note_code: string (unique) //admin+session+round e.g TPEO6731
*title: string //會議記錄title
*date: date
(11 行未修改)
*extempore_item: string (case_code, comma separated)
- case: //案件列表
+ case_table: //案件列表
*id: integer
*note_code: string (non-unique index)
*type: integer (1=report/2=confirm/3=deliberate/4=discuss/5=extempore)
*title: string //案名
- *case_code: string (non-unique index)
+ *case_code: string (non-unique index) //亂碼編號?
*description: string (json format)
*committee_speak: string (json format)
(4 行未修改)
*petition: string (petition_code, comma separate)
- petition: //陳情案列表
+ petition_table: //陳情案列表
*id: integer
*note_code: string (non-unique index)
(111 行未修改)
2017-03-07 06:59 – 07:01 Richard Hsieh r1117 – r1154
顯示 diff
(19 行未修改)
*origin: string (url) //原始文件
*admin: string //行政區+改制前後(O/N) e.g. TPEO(台北市), KHHN(高雄市改制後)
- *session: integer
+ *session: integer //第n次會議
*note_code: string (unique) //admin+session e.g TPEO673
- *title: string
+ *title: string //會議記錄title
*date: date
*start_time: time
(12 行未修改)
case: //案件列表
*id: integer
- *note_code: string
+ *note_code: string (non-unique index)
*type: integer (1=report/2=confirm/3=deliberate/4=discuss/5=extempore)
- *case_code: string
*title: string //案名
+ *case_code: string (non-unique index)
*description: string (json format)
*committee_speak: string (json format)
(6 行未修改)
petition: //陳情案列表
*id: integer
- *note_code: string
- *case_code: string
+ *note_code: string (non-unique index)
+ *case_code: string (non-unique index)
*petition_num: string //陳情案編號
*petition_code: string (unique) //note_code+case_code+'P'+petition_num
(108 行未修改)
2017-03-06 15:50 – 16:15 Richard Hsieh r807 – r1116
顯示 diff
(8 行未修改)
*ronny建議要有搜尋功能的話,就利用google drive存放資料
* 裝上google drive api的example,租用的主機不給跑@@ 回傳error500
-
- *
*跨會議記錄文件之間的資料關係
(3 行未修改)
*MySQL資料結構規劃
- notes: //會議紀錄meta
+ note: //會議紀錄meta
*id: integer
*origin: string (url) //原始文件
- *admin: string //行政區(縣市名)
- *title: string
+ *admin: string //行政區+改制前後(O/N) e.g. TPEO(台北市), KHHN(高雄市改制後)
*session: integer
+ *note_code: string (unique) //admin+session e.g TPEO673
+ *title: string
*date: date
*start_time: time
(4 行未修改)
*attend_committee: string (json format)
*attend_unit: string (json format)
- *report_item: string (item id, comma separate)
- *confirm_item: string (item id, comma separate)
- *deliberate_item: string (item id, comma separate)
- *discuss_item: string (item id, comma separate)
- *extempore_item: string (item id, comma separate)
+ *report_item: string (case_code, comma separated)
+ *confirm_item: string (case_code, comma separated)
+ *deliberate_item: string (case_code, comma separated)
+ *discuss_item: string (case_code, comma separated)
+ *extempore_item: string (case_code, comma separated)
- item: //案件列表
+ case: //案件列表
*id: integer
+ *note_code: string
*type: integer (1=report/2=confirm/3=deliberate/4=discuss/5=extempore)
- *session: integer
- *case: string //案名
+ *case_code: string
+ *title: string //案名
*description: string (json format)
*committee_speak: string (json format)
(2 行未修改)
*add_resolution: string (json format)
*attached: string (url)
- *petition: string (petition id, comma separate)
+ *petition: string (petition_code, comma separate)
petition: //陳情案列表
*id: integer
- *session:
- *case:
- *pet_num:
- *pet_name:
- *pet_location:
- *pet_reason:
- *pet_suggest:
- *pet_response:
- *pet_adhoc:
- *pet_resolution:
+ *note_code: string
+ *case_code: string
+ *petition_num: string //陳情案編號
+ *petition_code: string (unique) //note_code+case_code+'P'+petition_num
+ *name: string
+ *location: string
+ *reason: string (json format)
+ *suggest: string (json format)
+ *response: string (json format)
+ *adhoc: string (json format)
+ *resolution: string (json format)
*會議紀錄文件結構歸納
(99 行未修改)
2017-03-06 14:14 – 14:14 Richard Hsieh r795 – r806
顯示 diff
(15 行未修改)
*提問:是否會有案名變更的情況?例如案名文字修改
*有時候會有,或是合併審理之類的,所以資料庫結構可能要對案件index
-
- *
*MySQL資料結構規劃
(71 行未修改)
*10.研議事項(討論事項)
*11.臨時動議案
- .
+
+ *JSON 資料結構規劃
+ 試作範例:http://urbancode.tw/json_example.json
+ *[
+ * {
+ * "title": "臺北市都市計畫委員會第 670 次委員會議紀錄",
+ * "session": 670,
+ * "date": "2015/5/7",
+ * "start_time": "09:30",
+ * "end_time": "12:50",
+ * "location": "市政大樓 8 樓西南區本會委員會議室",
+ * "chairman": "林欽榮",
+ * "note_taker": "陳福隆",
+ * "attend_committee": [], ## 出席委員
+ * "attend_adviser": [], ## 出席顧問
+ * "attend_unit": [ ## 出席單位
+ * {
+ * "unit":"", ## 出席單位
+ * "attendee":[ ## 出席者姓名
+ * "","",""
+ * ]
+ * }
+ * ],
+ * "report_item": [], ## 報告事項
+ * "confirm_item": [], ## 確認事項
+ * "deliberate_item": [ ## 審議事項
+ * {
+ * "case": "擬定臺北市中華路二段(愛國西路至汀州路)兩側商業區細部計畫案", ## 案名
+ * "description": [ ## 說明
+ * "一、 計畫位置:本計畫範圍...",
+ * "二、 計畫緣起:「變更...",
+ * "本案係配合主要計畫擬定..."
+ * ],
+ * "committee_speak": [ ## 委員發言摘要
+ * {
+ * "committee":"林崇傑", ## 發言委員
+ * "speak":["",""] ## 發言內容
+ * }
+ * ],
+ * "response": [], ## 發展局回應
+ * "resolution": [], ## 決議
+ * "add_resolution": [], ## 附帶決議
+ * "attached":[], ## 附件
+ * "petition":[ ## 陳情意見綜整表
+ * {
+ * "pet_case": "擬定臺北市中華路二段(愛國西路至汀州路)兩側商業區細部計畫案", ## 陳情案名
+ * "pet_num": "1", ## 陳情案編號
+ * "pet_name": "李", ## 陳情人姓名
+ * "pet_location": [""], ## 陳情位置
+ * "pet_reason": [ ## 陳情理由
+ * "大同國小孩子大量分佈在..."
+ * ],
+ * "pet_suggest": [ ## (陳情)建議辦法
+ * "1、提供接駁車。",
+ * "2、請將都更說明會訊息..."
+ * ],
+ * "pet_response": [ ## (對陳情案)市府回應說明
+ * "1. 本計畫係規劃現...",
+ * "2. 另有關都市更新"
+ * ],
+ * "pet_adhoc": [], ## 專案小組審查意見
+ * "pet_resolution": [ ## (對陳情案)委員會決議
+ * "1.依市府回應說明辦理。",
+ * "2.本案一、二樓..."
+ * ]
+ * }
+ * ]
+ * }
+ * ],
+ * "discuss_item": [], ## 研議事項
+ * "extempore_item": [] ## 臨時動議
+ * }
+ *]
2017-03-06 14:14 (unknown) r794
顯示 diff
(95 行未修改)
2017-03-06 14:13 – 14:14 Richard Hsieh r792 – r793
顯示 diff
(16 行未修改)
*有時候會有,或是合併審理之類的,所以資料庫結構可能要對案件index
- *JSON 資料結構規劃
- 試作範例:http://urbancode.tw/json_example.json
- *[
- * {
- * "title": "臺北市都市計畫委員會第 670 次委員會議紀錄",
- * "session": 670,
- * "date": "2015/5/7",
- * "start_time": "09:30",
- * "end_time": "12:50",
- * "location": "市政大樓 8 樓西南區本會委員會議室",
- * "chairman": "林欽榮",
- * "note_taker": "陳福隆",
- * "attend_committee": [], ## 出席委員
- * "attend_adviser": [], ## 出席顧問
- * "attend_unit": [ ## 出席單位
- * {
- * "unit":"", ## 出席單位
- * "attendee":[ ## 出席者姓名
- * "","",""
- * ]
- * }
- * ],
- * "report_item": [], ## 報告事項
- * "confirm_item": [], ## 確認事項
- * "deliberate_item": [ ## 審議事項
- * {
- * "case": "擬定臺北市中華路二段(愛國西路至汀州路)兩側商業區細部計畫案", ## 案名
- * "description": [ ## 說明
- * "一、 計畫位置:本計畫範圍...",
- * "二、 計畫緣起:「變更...",
- * "本案係配合主要計畫擬定..."
- * ],
- * "committee_speak": [ ## 委員發言摘要
- * {
- * "committee":"林崇傑", ## 發言委員
- * "speak":["",""] ## 發言內容
- * }
- * ],
- * "response": [], ## 發展局回應
- * "resolution": [], ## 決議
- * "add_resolution": [], ## 附帶決議
- * "attached":[], ## 附件
- * "petition":[ ## 陳情意見綜整表
- * {
- * "pet_case": "擬定臺北市中華路二段(愛國西路至汀州路)兩側商業區細部計畫案", ## 陳情案名
- * "pet_num": "1", ## 陳情案編號
- * "pet_name": "李", ## 陳情人姓名
- * "pet_location": [""], ## 陳情位置
- * "pet_reason": [ ## 陳情理由
- * "大同國小孩子大量分佈在..."
- * ],
- * "pet_suggest": [ ## (陳情)建議辦法
- * "1、提供接駁車。",
- * "2、請將都更說明會訊息..."
- * ],
- * "pet_response": [ ## (對陳情案)市府回應說明
- * "1. 本計畫係規劃現...",
- * "2. 另有關都市更新"
- * ],
- * "pet_adhoc": [], ## 專案小組審查意見
- * "pet_resolution": [ ## (對陳情案)委員會決議
- * "1.依市府回應說明辦理。",
- * "2.本案一、二樓..."
- * ]
- * }
- * ]
- * }
- * ],
- * "discuss_item": [], ## 研議事項
- * "extempore_item": [] ## 臨時動議
- * }
- *]
+ *
*MySQL資料結構規劃
(71 行未修改)
*10.研議事項(討論事項)
*11.臨時動議案
+ .
2017-03-06 14:13 (unknown) r791
顯示 diff
(165 行未修改)
2017-03-06 13:00 – 14:13 Richard Hsieh r219 – r790
顯示 diff
(7 行未修改)
*MySQL 5.7 新增對於 json資料的支援 http://voicefromoldsoul.blogspot.tw/2017/01/mysql-json.html
*ronny建議要有搜尋功能的話,就利用google drive存放資料
+ * 裝上google drive api的example,租用的主機不給跑@@ 回傳error500
- *會議紀錄文件結構歸納
- *1.標題
- * a.委員會名稱
- * b.第xxx次委員會議紀錄
- *2.時間
- *3.地點
- *4.主席
- *5.紀錄者
- *6.簽到表
- *7.確認事項
- *8.報告事項(報告案)
- *9.審議事項(審議案)
- * a.案名
- * b.說明
- * c.委員發言摘要
- * d.發展局回應
- * e.決議
- * f.附件
- * g.陳情意見表
- * i.編號
- * ii.陳情人姓名
- * iii.陳情理由
- * iv.建議辦法
- * v.市府回應說明
- * vi.委員會決議
- *10.研議事項(討論事項)
- *11.臨時動議案
+ *
*跨會議記錄文件之間的資料關係
(74 行未修改)
* }
*]
+
+ *MySQL資料結構規劃
+ notes: //會議紀錄meta
+ *id: integer
+ *origin: string (url) //原始文件
+ *admin: string //行政區(縣市名)
+ *title: string
+ *session: integer
+ *date: date
+ *start_time: time
+ *end_time: time
+ *location: string
+ *chairman: string
+ *note_taker: string
+ *attend_committee: string (json format)
+ *attend_unit: string (json format)
+ *report_item: string (item id, comma separate)
+ *confirm_item: string (item id, comma separate)
+ *deliberate_item: string (item id, comma separate)
+ *discuss_item: string (item id, comma separate)
+ *extempore_item: string (item id, comma separate)
+
+ item: //案件列表
+ *id: integer
+ *type: integer (1=report/2=confirm/3=deliberate/4=discuss/5=extempore)
+ *session: integer
+ *case: string //案名
+ *description: string (json format)
+ *committee_speak: string (json format)
+ *response: string (json format)
+ *resolution: string (json format)
+ *add_resolution: string (json format)
+ *attached: string (url)
+ *petition: string (petition id, comma separate)
+
+ petition: //陳情案列表
+ *id: integer
+ *session:
+ *case:
+ *pet_num:
+ *pet_name:
+ *pet_location:
+ *pet_reason:
+ *pet_suggest:
+ *pet_response:
+ *pet_adhoc:
+ *pet_resolution:
+
+ *會議紀錄文件結構歸納
+ *1.標題
+ * a.委員會名稱
+ * b.第xxx次委員會議紀錄
+ *2.時間
+ *3.地點
+ *4.主席
+ *5.紀錄者
+ *6.簽到表
+ *7.確認事項
+ *8.報告事項(報告案)
+ *9.審議事項(審議案)
+ * a.案名
+ * b.說明
+ * c.委員發言摘要
+ * d.發展局回應
+ * e.決議
+ * f.附件
+ * g.陳情意見表
+ * i.編號
+ * ii.陳情人姓名
+ * iii.陳情理由
+ * iv.建議辦法
+ * v.市府回應說明
+ * vi.委員會決議
+ *10.研議事項(討論事項)
+ *11.臨時動議案
2017-03-04 08:36 – 08:37 Richard Hsieh r206 – r218
顯示 diff
(6 行未修改)
*租用的主機是 php + MySQL 5.6
*MySQL 5.7 新增對於 json資料的支援 http://voicefromoldsoul.blogspot.tw/2017/01/mysql-json.html
+ *ronny建議要有搜尋功能的話,就利用google drive存放資料
*會議紀錄文件結構歸納
(104 行未修改)
2017-02-20 09:49 – 09:50 Richard Hsieh r191 – r205
顯示 diff
(38 行未修改)
*
*提問:是否會有案名變更的情況?例如案名文字修改
-
+ *有時候會有,或是合併審理之類的,所以資料庫結構可能要對案件index
*JSON 資料結構規劃
(71 行未修改)
2017-02-19 16:43 – 16:44 che wei liu r141 – r190
顯示 diff
(37 行未修改)
*跨會議記錄文件之間的資料關係
*
+ *提問:是否會有案名變更的情況?例如案名文字修改
+
*JSON 資料結構規劃
(71 行未修改)
2017-02-18 09:37 – 09:40 Richard Hsieh r115 – r140
顯示 diff
(34 行未修改)
*10.研議事項(討論事項)
*11.臨時動議案
+
+ *跨會議記錄文件之間的資料關係
+ *
*JSON 資料結構規劃
(71 行未修改)
2017-02-16 16:17 – 16:17 YenCheng Chen r113 – r114
顯示 diff
(109 行未修改)
2017-02-16 09:40 Richard Hsieh r112
顯示 diff
(109 行未修改)
2017-02-15 06:01 – 06:01 Richard Hsieh r91 – r111
顯示 diff
(4 行未修改)
*現在以 json 的方式將會議記錄結構化 (NoSQL?) example
*如果要製作搜尋功能,是不是要改成SQL?
- *租用的主機是 php + MySQL 5.5
+ *租用的主機是 php + MySQL 5.6
+ *MySQL 5.7 新增對於 json資料的支援 http://voicefromoldsoul.blogspot.tw/2017/01/mysql-json.html
*會議紀錄文件結構歸納
(99 行未修改)
2017-02-09 15:25 – 15:25 Richard Hsieh r88 – r90
顯示 diff
(35 行未修改)
*JSON 資料結構規劃
- 試作範例:
+ 試作範例:http://urbancode.tw/json_example.json
*[
* {
(68 行未修改)
2017-02-09 12:39 – 12:58 Richard Hsieh r1 – r87
顯示 diff
- Untitled
+ 開放都市-委員會會議記錄資料庫 資料結構
+ 專案母體:委員會會議記錄資料庫
- This pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!
+ *資料結構討論
+ *現在以 json 的方式將會議記錄結構化 (NoSQL?) example
+ *如果要製作搜尋功能,是不是要改成SQL?
+ *租用的主機是 php + MySQL 5.5
+
+ *會議紀錄文件結構歸納
+ *1.標題
+ * a.委員會名稱
+ * b.第xxx次委員會議紀錄
+ *2.時間
+ *3.地點
+ *4.主席
+ *5.紀錄者
+ *6.簽到表
+ *7.確認事項
+ *8.報告事項(報告案)
+ *9.審議事項(審議案)
+ * a.案名
+ * b.說明
+ * c.委員發言摘要
+ * d.發展局回應
+ * e.決議
+ * f.附件
+ * g.陳情意見表
+ * i.編號
+ * ii.陳情人姓名
+ * iii.陳情理由
+ * iv.建議辦法
+ * v.市府回應說明
+ * vi.委員會決議
+ *10.研議事項(討論事項)
+ *11.臨時動議案
+
+ *JSON 資料結構規劃
+ 試作範例:
+ *[
+ * {
+ * "title": "臺北市都市計畫委員會第 670 次委員會議紀錄",
+ * "session": 670,
+ * "date": "2015/5/7",
+ * "start_time": "09:30",
+ * "end_time": "12:50",
+ * "location": "市政大樓 8 樓西南區本會委員會議室",
+ * "chairman": "林欽榮",
+ * "note_taker": "陳福隆",
+ * "attend_committee": [], ## 出席委員
+ * "attend_adviser": [], ## 出席顧問
+ * "attend_unit": [ ## 出席單位
+ * {
+ * "unit":"", ## 出席單位
+ * "attendee":[ ## 出席者姓名
+ * "","",""
+ * ]
+ * }
+ * ],
+ * "report_item": [], ## 報告事項
+ * "confirm_item": [], ## 確認事項
+ * "deliberate_item": [ ## 審議事項
+ * {
+ * "case": "擬定臺北市中華路二段(愛國西路至汀州路)兩側商業區細部計畫案", ## 案名
+ * "description": [ ## 說明
+ * "一、 計畫位置:本計畫範圍...",
+ * "二、 計畫緣起:「變更...",
+ * "本案係配合主要計畫擬定..."
+ * ],
+ * "committee_speak": [ ## 委員發言摘要
+ * {
+ * "committee":"林崇傑", ## 發言委員
+ * "speak":["",""] ## 發言內容
+ * }
+ * ],
+ * "response": [], ## 發展局回應
+ * "resolution": [], ## 決議
+ * "add_resolution": [], ## 附帶決議
+ * "attached":[], ## 附件
+ * "petition":[ ## 陳情意見綜整表
+ * {
+ * "pet_case": "擬定臺北市中華路二段(愛國西路至汀州路)兩側商業區細部計畫案", ## 陳情案名
+ * "pet_num": "1", ## 陳情案編號
+ * "pet_name": "李", ## 陳情人姓名
+ * "pet_location": [""], ## 陳情位置
+ * "pet_reason": [ ## 陳情理由
+ * "大同國小孩子大量分佈在..."
+ * ],
+ * "pet_suggest": [ ## (陳情)建議辦法
+ * "1、提供接駁車。",
+ * "2、請將都更說明會訊息..."
+ * ],
+ * "pet_response": [ ## (對陳情案)市府回應說明
+ * "1. 本計畫係規劃現...",
+ * "2. 另有關都市更新"
+ * ],
+ * "pet_adhoc": [], ## 專案小組審查意見
+ * "pet_resolution": [ ## (對陳情案)委員會決議
+ * "1.依市府回應說明辦理。",
+ * "2.本案一、二樓..."
+ * ]
+ * }
+ * ]
+ * }
+ * ],
+ * "discuss_item": [], ## 研議事項
+ * "extempore_item": [] ## 臨時動議
+ * }
+ *]
2017-02-09 12:39 (unknown) r0
顯示 diff
+ Untitled
+ This pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!