深圳泰中科技有限公司 目 录 1.背景说明 API 调用方法 调用流程 调用说明 签名算法 请求入口地址 授权 token 获取 公共错误码... 3.签名生成示例 参数 排序

Size: px
Start display at page:

Download "深圳泰中科技有限公司 目 录 1.背景说明 API 调用方法 调用流程 调用说明 签名算法 请求入口地址 授权 token 获取 公共错误码... 3.签名生成示例 参数 排序"

Transcription

1 目 录 1.背景说明 API 调用方法 调用流程 调用说明 签名算法 请求入口地址 授权 token 获取 公共错误码... 3.签名生成示例 参数 排序 拼接 签名 java 示例代码... 4 商城业务 API 接口 商品列表... 请求参数... 响应参数 发货单同步... 请求参数... 响应参数 商品库存更新... 请求参数... 响应参数 订单列表... 请求参数... 响应参数 订单详情... 请求参数... 响应参数...

2 4.7 修改商品 sku 价格... 请求参数... 响应参数 类目查询... 请求参数... 响应参数 商品详情... 请求参数... 响应参数 物流公司查询... 请求参数... 响应参数 分类品牌查询... 请求参数... 响应参数 商品新增... 请求参数... 响应参数 商品修改... 请求参数... 响应参数 商品上下架... 请求参数... 响应参数... 5 TFTBOX 业务 API 接口 TFTBOX 订单创建... 请求参数... 响应参数 TFTBOX 打开收银台... 请求参数...

3 响应参数 TFTBOX 订单支付校验查询... 请求参数... 响应参数... 6 图片上传接口... 请求参数... 响应参数... 7 业务错误码...

4 API 调用方法详解 API call method details 1.背景说明 Background notes 开放平台 thisshop 的 API 是基于 HTTPS 协议来调用的 开发 者可以直接使用 HTTPS 请求进行调用 以下主要是针对自行封装请求 进行 API 调用的原理进行详细解说 The API of the open platform (thisshop) is called based on the HTTPS protocol. Developers can directly use HTTPS requests to call. The following is a detailed explanation of the principle of API calls for self encapsulation requests. 2.API 调用方法 API call method 2.1 调用流程 Calling process 根据 POP 的协议 填充参数 > 生成签名 > 拼装 HTTP 请 求 > 发起 HTTP 请求> 得到 HTTP 响应 > 解释 json 结果 According to pop protocol: in parameters > generate signature > assemble HTTP request > initiate HTTP request > get HTTP response > interpret JSO result.

5 2.11 使用分配的 appid 和 appsecret 到服务器获取 token 有效 期 24 小时 Use the assigned appid and appsecret to get the token from the server (valid for 24 hours) 将所有参数 注意是所有参数 包括 token timestamp nonce 等 除去 sign 本身 MD5 加密 全部大写 生成 sign 签名 (参 考签名方法) Remove all parameters (note that it is all parameters, including token, timestamp, nonce, etc.) from sign itself, MD5 encryption, all uppercase, and generate sign signature. (refer to signature method) 参数带上 sign 请求服务器 Parameter with sign, request server. 2.2 调用说明 2.21 调用 API 时 必须传入系统级公共参数 系统级公共输入参数 字段 field 类型 type 是否必须 描述 describe Is it necessary appid 是 yes App_key of application token 是 yes See the following for the access method of

6 authorized token timestamp 是 yes Millisecond time stamp, format: , error within 6 minutes (same time zone) nonce 是 yes 业务流水号 保持唯一 便于跟踪查询 Business serial number (keep unique, easy to track and query) sign 是 yes Signature (see below for signature method) method 是 yes Business API interface name 2.22 应用级别输入参数 Application level input parameters API 调用除了必须包含公共参数外 如果 API 本身有业务级的参 数也必须传入 每个 API 的业务级参数请考 API 文档说明 API calls must contain public parameters. If the API itself has business level parameters, they must also be passed in. For

7 business level parameters of each API, please refer to the API documentation. 字段 field 类型 type 是否必须 Is it 描述 describe necessary? data 2.3 签名算法 signature algorithm 签名参数 sign 生成的方法 第 1 步: 将所有参数 注意是所有参数 除去值是空的参数和 sign 本身 按参数名首字母升序排序 第 2 步: 然后把排序后的参数按参数 1=值 1 参数 2=值 2 参数 n=值 n 这里的参数和值必须是采用 utf-8 进行 URL 编码 的方式拼 接成一个字符串 第 3 步: 把分配给接入方的签名密钥 secret 拼接在第 2 步得到 的字符串后面 第 4 步: 在上一步得到的字符串然后计算 md5 值 得到 32 位字 符串 然后转成大写,得到的字符串作为 sign 的值 The method of generating signature parameter sign Step 1: remove all parameters (note that they are all parameters), parameters whose value is null and sign itself,

8 and sort them in ascending order by the first letter of the parameter name. Step 2: then sort the parameters according to parameter 1 = value 1, parameter 2 = value 2 Parameter n = value n (in this case, the parameter and value must be URL encoded with UTF-8) is spliced into a. Step 3: splice the signature key secret assigned to the access party after the obtained in step 2. Step 4: get the in the previous step, then calculate the MD5 value, get the 32-bit, then convert it to uppercase, and the will be the value of sign 2.4 请求入口地址 Request entry address 正 式 环 境 测 试 环 境 Official environment: Test environment:

9 2.5 授权 token 获取 Authorized token acquisition 接口名称 授权 token 获取 Interface Authorized token acquisition name 功能描述 our application needs to be authorized by the Function user, that is, to obtain the authorization token description to access the user data 访问路径 /api/oauth/access/token Access path 数据格式 json data format 请求方式 Request mode post

10 请求参数 字段 类型 是 否 必 说明 Request field type 填 parameters Is Explain it necess ary to in? appid 是 yes 应用 ID Application of ID appsecret 是 yes 应用密钥 Application key timestamp 是 yes Millisecond time stamp, such as , within minutes 6 (the same time zone) 请求示例报 文 "appid": "your appid", Request "appsecret": "your appsecret",

11 sample "timestamp": " " message 返回报文 Successful return Return message "transactionstatus": "errorcode": "0", "replycode": null, "replytext": null, "memo": null, "appame": "tft-api-server", "success": true, "token": "E8A7DF21B48D4877A31AA7667D23D965" Abnormal return "transactionstatus": "errorcode": "1", "replycode": "10004", "replytext": "appsecret is error!", "memo": null,

12 "appame": "tft-api-server", "success": false, "token": null 注意事项 token 有效期为 24 小时 每次请求获取 token 值 前一个 token 会失效 并刷新延长 token 的有效时间 matters needing attention: The valid period of the token is 24 hours. Each time the token value is obtained, the previous token will be invalid, and the valid time of the token will be extended by refreshing. 2.6 授权 token 有效性校验 Validation of authorization token Interface 授权 token 有效性校验 name Validation of authorization token Function 校验 token 是否有效 description Verify whether the token is valid Access path /api/oauth/token/check data format json

13 Request mode post Request 字段 类型 是 否 必 说明 parameters field type 填 Is Explain it necess ary to in? appid yes 应用 ID Application of ID appsecret yes 应用密钥 Application key timestamp yes 毫秒时间戳 如 误差 6 分钟内(相同时区) Millisecond time stamp, such as , within minutes 6 (the same time zone)

14 token yes Authorized token Return 字段 类型 说明 parameter field type Explain enabled : effective : invalid resttime Stirng Remaining effective time, in seconds, returned only when valid Request "appid": "your appid", "appsecret": "your appsecret", "timestamp": " " "token":"xxxxxxxx" sample message it is

15 Return message 2.7 Common error code Error code description Request succeeded Incomplete request parameters Request expired Invalid application ID Invalid key Request method is not supported IP address is in the blacklist IP is not in the specified whitelist Request interface is unauthorized Requests exceeded today Application ID is empty Business serial number is empty Signature is empty API name is empty

16 Timestamp is empty Timestamp expires Token is invalid Token expired Signature check failed System error, administrator please contact the 3. 签 名 生 成 示 例 Example of signature generation 3.1 参数 parameter 例如输入公共参数为 For example, enter the public parameter as 'token' = '46DE554983BA4E41BB591EA61FA50CCE ' 'appid' = TF10000, 'timestamp' = ' ', 'nonce' ='8ds9a921', 'method' = 'thisshop.item.list.get'

17 3.2 排序 Sort 按首字母升序排列(ASCII 码)Ascending alphabetical order (ASCII code) appid = TF10000, method ='thisshop.item.list.get', nonce = 8ds9a921', timestamp = ', token = 46DE554983BA4E41BB591EA61FA50CCE 3.3 拼接 splice 连接字符串 并在尾加上签名 signsecret 假设 signsecret 为 XXX 如下 Concatenate the, and add the signature signsecret at the end, assuming signsecret is XXX, as follows: Str = appid=tf00000method=thisshop.item.list.getnonce =8ds9a921timestamp= token=46DE554983BA4E41BB591EA61FA50CC EXXX MD5 大写 32 位上面的字符串 生成签名 sign 转大写 Concatenate the, and add the signature signsecret at the end, assuming signsecret is XXX, as follows: MD5(appId=TF00000method= thisshop.item.list.get nonce =8ds9a921timestamp= token=46DE554983BA4E41BB591EA61FA50CC EXXX) 注意事项 所有的请求和响应数据编码皆为 utf-8 格式 url 里的所有参数值请做 urlencode 编码

18 Precautions: All request and response data are encoded in UTF-8 format. Please use urlencode for all parameter values in the URL. 3.4 签名 java 示例代码 Signature java sample code /** * Remove null values and signature parameters from the array sarray Parameter group for request signature new signature parameter group after removing null values and signature parameters */ public static Map<, > paramfilter(map<, > sarray) Map<, > result = new HashMap<>(); if (sarray == null sarray.size() <= 0) return result; for ( key : sarray.keyset()) value = sarray.get(key); if (value == null value.equals("") key.equalsignorecase("sign")) continue; result.put(key, value); return result; /** * Sort all elements of the array and stitch them into s according to the pattern of "parameter = parameter value" params Parameter groups that need to be sorted and participate in character splicing after stitching */ public static createlink(map<, > params) throws Exception List<> keys = new ArrayList<>(params.keySet()); Collections.sort(keys); str = ""; for (int i = 0; i < keys.size(); i++) key = keys.get(i); value = params.get(key)+"";

19 value = URLEncoder.encode(value, "UTF-8"); str = str + key + "=" + value; return str; /** * Generate an array of signature parameters to request parammap parameters to be signed sessionkey signing key * md5 encryption method references org.apache.commons.codec.digest.digestutils request signature parameter array */ public static Map<, > sign(map<, > parammap, sessionkey) // Remove null values and signature parameters from the array Map <, > spara = paramfilter (parammap); // Concatenate all elements of the array into a according to the pattern of "parameter = parameter value" str = createlink (spara); // Generate the signature result sign = DigestUtils.md5Hex (str + sessionkey); // The signature result is added to the request submission parameter group spara.put("sign", sign.touppercase()); return spara; 4 商城业务 API 接口 API interface of mall business 4.1 List of commodities ame Interface name thisshop.item.list.get Function description Query product list information.

20 Access path /api/shop/router/rest data format json Request mode Post Request message sample "method":"thisshop.item.list.get", "data": "skuid":"", "skuame":"", "qrcodes":" , ", "startupdatetime": "", "endupdatetime": "", "pageum":1, "pagesize":10 Return data 错误 "transactionstatus": "errorcode": "1", "replycode": "10000", "replytext": "请求参数错误", "memo": null, "appame": "tft-shop-server", "success": false, "page": null, "result": null 成功

21 "transactionstatus": "errorcode": "0", "replycode": null, "replytext": null, "memo": null, "appame": "tft-shop-server", "success": true, "page": "count": 1, "pagesize": 10, "pageum": 1, "orderby": null, "returncount": true, "offset": 0, "limit": 10, "result": [ "spuid": "35667", "sputitle": "Fascination Series Protective Case", "ismoresku": 1, "classifyame": "Share for free", "itemlist": [ "skutitle": "Fascination Series Protective Case For iphone 6+,6s+ Black ", "marketprice": 199, "qrcode": "", "stockum": 50, "bolstatus": "2",

22 "itemprice": 199, "skuid": " ", "spec": "\"Color\":\"Black\",\"Model\":\"For iphone 6+,6s+\"", "skutitle": "Fascination Series Protective Case For iphone 7,8 Black ", "marketprice": 199, "qrcode": "", "stockum": -9949, "bolstatus": "2", "itemprice": 199, "skuid": " ", "spec": "\"Color\":\"Black\",\"Model\":\"For iphone 7,8\"" ] ] Request parameter skuid SKU number skuame SKU name barcode Current page qrcodes pageum Commodity barcode (external product code), supports multiple, separated by commas, up to 10 Default pageum = 1

23 number pagesize Articles page per time start Update range time time end Update range time startupdatetime endupdatetime Default pagesize = 10, maximum pagesize = 100 yyyy-mm-dd HH:mm:ss yyyy-mm-dd HH:mm:ss Response parameters transactionstatus Transaction Response page Page number object result List Collection object errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed count The total amount pagesize Articles page transactionstatus 0: correct; incorrect true: success false: failure page per 1:

24 pageum current page number orderby Sort fields Reserved field returncount boolean Whether to count the total number Reserved field offset Reserved field limit Reserved field result[]: spuid SPU number sputitle SPU title classifyame Category ame ismoresku Whether more goods skulist List SKU product list qrcode Merchant encoding skuid SKU encoding skutitle SKU title specinfo Specification information skuprice BigDecimal commodity price marketprice BigDecimal market price bolstatus Up and down status stockum Inventory quantity -1: o SKU 0: Single SKU 1: Multiple SKUs skulist[]: Product barcode is "external product code" For example: "Color": "Black", "Model": "For iphone 6 +, 6s +" 1: on the shelf 2: off the shelf Available stock

25 4.2 Shipment order synchronization ame Explain Interface name thisshop.erp.logistics.sync Function description This method provides the data synchronization function of third-party merchant's invoices. Access path /api/shop/router/rest data format json Request mode Post Request message sample "method":"thisshop.erp.logistics.sync", "data": "orderid":" ", "flgmultipackage":"y", "packagelist":[ "expresscompanyid":"beexkk001", "expresso":"ship_o_003", "deliverytime":" :47:15", "skulist":[ "skuid":" ", "quantity":1, "skuid":" ", "quantity":1 ], "expresscompanyid":"beexkk001", "expresso":"ship_o_002", "deliverytime":" :47:15", "skulist":[ "skuid":" ", "quantity":1 ]

26 ] Return data Request parameters data: orderid Order number flgmultipackage Whether more parcels packagelist List Parcel collection expresscompanyid Logistics company number expresso shipment number deliverytime Delivery time skulist List Logistics package contains y:多包裹 n:单包裹 packagelist[]: SKU 当 flgmultipackage="y"

27 information 时 skulist 必填 skulist[]: skuid SKU 编号 quantity SKU 数量 Response parameters transactionstatus Transaction Response page Page number object result Return object errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed transactionstatus 0: correct; 1: incorrect true: success failure false: 4.3 Product inventory update ame Interface name thisshop.erp.stock.update Function description This method provides third-party merchant product inventory updates. Access path /api/shop/router/rest

28 data format json Request mode Post Request message sample "method": "thisshop.erp.stock.update", "data": "spuid": "11055", "skuid": " ", "qrcode": "", "stockum": 8, "tradetype": 0 Return data Request parameter spuid SPU number skuid SKU number qrcode required qrcode barcode Product barcode is "external product code" stockum Stock quantity tradetype Transaction Type transactionstatus Transaction Response skuid 0: Full inventory 1: Incremental inventory Response parameters or

29 page Page number object result Return object errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed transactionstatus 0: correct; 1: incorrect true: success failure 4.4 Order List ame Interface name thisshop.order.list.get Function description Get order list data Access path /api/shop/router/rest data format json Request mode Post Request message sample "method": "thisshop.order.list.get", "data": "orderstatus": 8, "startcreatetime": " :30:22", "endcreatetime": " :30:22", "startpaytime": "", "endpaytime": "", "startupdatetime": "", false:

30 "endupdatetime": "", "pageum": 1, "pagesize": 10 Return data 成功 "transactionstatus": "errorcode":"0", "replycode":null, "replytext":null, "memo":null, "appame":"tft-shop-server", "success":true, "page": "count":1, "pagesize":10, "pageum":1, "orderby":null, "returncount":true, "offset":0, "limit":10, "result":[ "orderid":" ", "ordertitle":"gigabyte H310M S2H (1151)(1 items)", "ordertotalamount":3940, "paymentamount":0, "discountamount":3940,

31 "expressamount":0, "submittime":" :54:00", "paytime":" :01:36", "orderstatus":8, "paystatus":4 ] Request parameter orderstatus Order Status Order Status( 0: deleted 1: canceled 2: pending payment 8: To be shipped 16: To be received 32: done 64: Partial delivery) startcreatetime endcreatetime Order creation start time Order creation end time Order payment start time Order payment end time Current page number Articles page startpaytime endpaytime pageum pagesize per yyyy-mm-dd HH:mm:ss yyyy-mm-dd HH:mm:ss yyyy-mm-dd HH:mm:ss yyyy-mm-dd HH:mm:ss Default pageum = 1 Default pagesize = 10, maximum pagesize = 100

32 time start Update range time time end Update range time startupdatetime endupdatetime yyyy-mm-dd hh:mm:ss yyyy-mm-dd hh:mm:ss Response parameters transactionstatus Transaction Response page Page number object result List Order List errorcode Error identification replycode error code replytext Error message memo ote appame service name success Boolean whether succeed count The total amount pagesize Articles page pageum current page number orderby Sort fields Reserved field returncount Boolean Whether to count the total Reserved field transactionstatus 0: correct; 1: incorrect true: success failure page per false:

33 number offset Reserved field limit Reserved field result[]: orderid Order number ordertitle Order title ordertotalamount BigDecimal Order total Undeducted promotional amount paymentamount BigDecimal Order paid Deduction of preferential amount discountamount BigDecimal Discounted price expressamount BigDecimal Courier fee submittime order time yyyy-mm-dd HH:mm:ss paytime Payment time yyyy-mm-dd HH:mm:ss orderstatus Order Status Order Status( 0: deleted 1: canceled 2: pending payment 8: To be shipped 16: To be received 32: done 64: Partial shipment)) paystatus Payment status payment status( 1: to be paid 2: paying 4: Payment successful 8: Payment failed) 4.5 order details ame

34 Interface name thisshop.order.detail.get Function description Get order details Access path /api/shop/router/rest data format json Request mode Post Request message sample "method": "thisshop.order.detail.get", "data": "orderid": " " Return data 成功 "transactionstatus": "errorcode": "0", "replycode": null, "replytext": null, "memo": null, "appame": "tft-shop-server", "success": true, "page": null, "result": "addressinfo": "consignee": "tony", "phone": " ", "provinceame": "Thailand", "cityame": "Bangkok", "areaame": "Bangkok", "postid": "1005"

35 , "expressamount": 0, "orderid": " ", "paytime": " :41:18", "orderstatus": 16, "discountamount": 35, "paymentamount": 375, "shiplist": [ "deliverytime": " :30:08", "expresso": "KOV ", "expresscompanyid": "Bee Express", "skuid": " " ], "submittime": " :39:49", "ordertotalamount": 410, "itemlist": [ "skuame": "[konvy] /LLV DHC-Supplement Vitamin C 60 Days ( 60Days x 2)", "quantity": 1, "qrcode": "736", "itemprice": 410, "chargeamount": 375, "spuid": "27124", "skuid": " " ], "ordertitle": "[konvy] /LLV DHC-Supplement Vitamin C 60 Days ( 60Days x 2)(1 items)", "paystatus": 4

36 Request parameter orderid Order number Response parameters transactionstatus Transaction Response page Page number object result Return object errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed transactionstatus 0: correct; 1: incorrect true: success failure result: orderid Order number ordertitle Order title false:

37 submittime order time expressamount BigDecimal Courier fee discountamount BigDecimal Discounted price paymentamount BigDecimal Order paid Deduction of preferential amount ordertotalamount BigDecimal Order total Undeducted promotional amount paytime Payment time orderstatus Order Status Order Status( 0: deleted 1: canceled 2: pending payment 8: To be shipped 16: To be received 32: done 64: Partial delivery) paystatus Payment status Payment status( 1: to be paid 2: paying 4: Payment successful 8: Payment failed) addressinfo delivery information ItemList List Product list shiplist List Shipping list provinceame Province name cityame city name areaame Area name postid Zip code addressinfo:

38 consignee Receiver phone phone spuid SPU number skuid SKU number skuame SKU name itemlist[] qrcode barcode Product barcode is "external product code" quantity umber Products itemprice Commodity price chargeamount BigDecimal Total goods of The amount actually paid shiplist[] skuid SKU number expresscompanyid Logistics company number expresso shipment number deliverytime Delivery time 4.7 Modify product sku price ame Interface name thisshop.goods.sku.price.update Function description Modify product sku price, Access path /api/shop/router/rest yyyy-mm-dd HH:mm:ss

39 data format json Request mode Post Request message sample "method": "thisshop.goods.sku.price.update", "data": "skupricelistitem": [ "isonsale": 0, "marketprice": 500, "singleprice": 1000, "skuid": " " ], "spuid": "50815" Return data Request parameter Data type Length Mandatory spuid 32 SPU number skupricelistitem list sku price list skupricelistitem Data type Leng th Mandatory Descrip tion skuid 32 isonsale int 11 singleprice Long 11 Price marketprice Long 11 Market price SKU number sku status, 0-remains as it is, 1-up and down, 2-out 0 Response parameters

40 Transaction Response transactionstatus page Page number object result Return object errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed transactionstatus 4.8 Category query ame Interface name thisshop.goods.category.get Function description Category query API Access path /api/shop/router/rest data format json Request mode Post Request message sample "data": "parentid": "0" "querytype": "1", "method": "thisshop.goods.category.get" 0: correct; 1: incorrect true: success failure false:

41 Return data Request parameter Data type Length Mandatory parentid 32 Category number: 0 is the vertex cat_id, and the category tree is obtained through the top node of the tree querytype 1 Query types: full category the mall, authorized search merchant 1 of 2 Default is 1 by Response parameters transactionstatus Transaction Response page Page number object result Return object result Data type Length level ITEGER 11 Mandatory Category level 1-first category, 2-secondary category,

42 3-level category txtamelocal Product category local name txtameen Product Category English ame boltreeisleaf Tree-whether leaf node (es:, o: ) parentid Parent category number categoryid Classification number transactionstatus errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed 4.9 Product details ame 说明 Interface name thisshop.goods.details Function description product details Access path /api/shop/router/rest data format json Request mode Post 0: correct; 1: incorrect true: success failure false:

43 Request message sample "data": "spuid": "10902", "method": "thisshop.goods.details" Return data Request parameter Data type Length Mandatory spuid 32 Spu number Spu number Response parameters transactionstatus Transaction Response page Page number object result Return object errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed transactionstatus Data Length Mandato 0 正确 1 错误 true: 成 功 false: 失 败

44 type ry spuid 32 Spu number Spu number itemame 512 product name product name itemtitle 512 Product title Product title categoryid 32 Classification number Classification number brandname 128 brand name brand name pcdetails 500 Product description on pc Product description, word limit: mobiledetails 500 product description Product description, word limit: videourl STRIG 256 Product video url Product video url imageurl 256 SPU picture SPU main picture skulist list sku object list sku object list medialist list Product display chart Product chart main display skulist Data type itemid itemame itemtitle Product umber Product umber 512 product name product name 512 Product title Product title brandid 32 product brand product brand itemskuid Product SKU number Product SKU number itemspuid Product SPU number Product SPU number itemqrcode Product barcode Product barcode classid Product type number Product type number amtprice umber (11,2) Price Price amtpricemarket umber (11,2) market price market price typpickup 32 n Pickup method Pickup method Inventory count Inventory count 1 order less inventory 2 payment less inventory typstockcalc Length Mand atory

45 isonsale sku status sku shelves status, 1-shelf, 2-shelf codvaliddays n Validity period (days) Validity period (days) attlist List Product attribu te list Product attribute list attlist Product specifications Data type Length Mandatory attame 128 Property name: color, size imgurl 256 n Specifications main picture attvalue 128 Attribute value 4.10 Logistics company query ame Interface name thisshop.logistics.companies.get Function description Logistics company query Access path /api/shop/router/rest data format json Request mode Post Request message sample "data": "pageum":"1","pagesize":"100" "appid": "TF09223", "token": "4D153A9B305B43E8ADD C32BC8", "timestamp": " ", "nonce": " ", "method": "thisshop.logistics.companies.get", "sign": "05FF398518B1AFEB5BC031286A09ED0A"

46 Return data success "transactionstatus": null, "page": "count": 0, "pagesize": 200, "pageum": 1, "orderby": "", "returncount": false, "offset": 0, "limit": 200, "result": [ "available": 1, "code": "Bee", "logisticscompanyen": "Bee", "logisticscompanylocal": "蜜蜂", "logisticscompanylogo": " "available": 1, "code": "EMS", "logisticscompanyen": "EMS", "logisticscompanylocal": "邮政", "logisticscompanylogo": "

47 "available": 1, "code": "STO", "logisticscompanyen": "STO", "logisticscompanylocal": "顺丰", "logisticscompanylogo": " ] Request parameter Data type pageum pagesize Length Mandatory n which page n Pages Response parameters transactionstatus Transaction Response page Page number object result Return object result Data type available ITEGER Lengt h Mandatory is it effective Whether it is valid, 1currently supported courier companies,

48 2-unsupported courier companies, note: you must enter the supported courier company id when shipping, otherwise an error will be reported code Courier Company Code Courier Company Code logisticscompa nyen Express company name in English Courier company name logisticscompa nylocal Courier company name local language Courier company name local language logisticscompa nylogo Courier company logo Courier company logo transactionstatus errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed 4.11 Brand Search ame Explain 0: correct; 1: incorrect true: success failure false:

49 Interface name thisshop.category.brand.get Function description Category query API Access path /api/shop/router/rest data format json Request mode Post Request message sample "data": "categoryid": " ", "method": "thisshop.category.brand.get" Return data Success "transactionstatus": null, "page": null, "result": "datalist": [ "level": 1, "txtamelocal": "", "txtameen": "MOBILES", "boltreeisleaf": "n", "parentid": "0", "categoryid": "0101" ] Request parameters Data type Length Mandatory categoryid strin g 32 三级分类编号

50 Response parameter Data type transactionstatus Transaction Response page Page number object result Return object result Data type categoryid Length Mandatory Classification number Classification number brando Brand ID Brand ID namelocal Brand name local Brand name local nameen Brand English ame Brand ame English pcimageo Brand picture Brand picture mobileimageo Brand mobile picture pc pc Brand mobile picture transactionstatus errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed 0: correct; 1: incorrect true: success failure false:

51 4.12 Product added ame Interface name thisshop.goods.add Function description Product added Access path /api/shop/router/rest data format json Request mode Post Request message sample "data": "brandame": "HUAWEI", "categoryid": " ", "itemame": "HUAWEI mate20 手机", "itemtitle": "HUAWEI mate20 手机", "pcdetails": "HUAWEI text Desc 1", "mobiledetails": "HUAWEI text Desc 1", "videourl": "", "imageurl": "/shop/pop/ jpg", "medialist": [ "/shop/pop/ jpg", "/shop/pop/ jpg" ], "skulist": [ "amtprice": 1000, "amtpricemarket": 1200, "attlist": [ "attame": "color", "imgurl": "/shop/pop/ jpg", "attvalue": "black", "attame": "size", "imgurl": "", "attvalue": "12" ], "codvaliddays": 100, "isonsale": 1, "itemame": "mate20", "itemqrcode": "324333", "itemtitle": "mate20 手机",

52 "typstockcalc": 1 ] Return data Request parameter Data type Length Mandato ry itemame 256 product name product name itemtitle 512 Product title Product title categoryid 32 Classification number Classification number brandid 32 Brand ID Brand ID pcdetails 1000 Product description on pc limit word mobiledetai ls 1000 product description limit word videourl 256 Product url Product video url typpublish sku status imageurl SPU picture skulist OBJECT[] sku object list sku object list medialist List<Stri ng> Product display chart Obtained through the image upload interface 256 video sku shelves status, 1-up, 2-down main Obtained through the image upload interface skulist Data type Length Mandato ry itemame 256 product name product name

53 itemtitle itemqrcode amtprice BigDecimal amtpricemarket BigDecimal typpickup typstockcalc (16,2) (16,2) 32 Product title Product title Product barcode Product barcode Price Buyout price, empty or <= 0 default 0 market price Market price, empty or <= 0 default 0 Pickup method Pickup method Inventory count Inventory count 1 order less inventory 2 payment less inventory Validity period (days) Validity period (days) 1 codvaliddays attlist List<Strin g> stockum 6 11 Product attribute list Product attribute list Inventory Inventory number, empty or <= 0 default 0 attlist product attributes Data type Length Mandatory attame 128 Property name: color, size imgurl 256 n Specifications main picture attvalue 128 Attribute value Response parameters Data type transactionstatus Transaction Response page Page number object result Return object Obtained through the image upload interface

54 result Data type spuid Length Mandatory Spu 编号 Spu 编号 transactionstatus errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed 0: correct; 1: incorrect true: success failure 4.13 Product modification ame Interface name thisshop.goods.update Function description Product modification Access path /api/shop/router/rest data format json Request mode Post Request message sample "method": "thisshop.goods.update" "data": "spuid": "5600", "brandid": "342423", "categoryid": " ", "typpublish": 1, "itemame": "HUAWEI mate20 手机", "itemtitle": "HUAWEI mate20 手机", "pcdetails": "HUAWEI text Desc 1", "mobiledetails": "HUAWEI text Desc 1", false:

55 "videourl": "/shop/pop/ mp4", "imageurl": "/shop/pop/ jpg", "medialist": [ "/shop/pop/ jpg", "/shop/pop/ jpg" ], "skulist": [ "itemid": "560001", "amtprice": 1000, "amtpricemarket": 1200, "attlist": [ "attame": "color", "imgurl": "/shop/pop/ jpg", "attvalue": "black", "attame": "size", "imgurl": "", "attvalue": "12" ], "itemame": "mate20", "itemqrcode": "324333", "itemtitle": "mate20 手机", "typstockcalc": 1 ] Return data Request parameter Data type Length Mandatory spuid 32 Spu number Spu number itemame 512 product name product name itemtitle 512 Product title Product title pcdetails 500 Product description on pc Product description, word limit: mobiledetai ls 500 product description Product description, word limit: videourl STRIG 256 Product video Product video url

56 url imageurl 256 SPU picture main SPU main picture typpublish sku status sku status, 0-remains as it is, 1-up and down, 2-out skulist OBJECT[ ] sku object list sku object list medialist OBJECT[ ] Product display chart Product display chart skulist Data type itemid itemame itemtitle Length Manda tory Product umber Product umber 512 product name product name 512 Product title Product title brandid 32 product brand product brand itemskuid Product number Product SKU number itemqrcode Product barcode Product barcode amtprice umber (11,2) Price Price amtpricemarket umber (11,2) market price market price typpickup 32 Pickup method Pickup method SKU typstockcalc Inventory count Inventory count 1 order less inventory 2 payment less inventory codvaliddays Validity period (days) Validity period (days) attlist List<> Product attribute list Product attribute list attlist product specifications Data type Length Mandatory Descri ption attame 128 Property color, size imgurl 256 Specifications picture attvalue 128 Attribute value name: main

57 Response parameters Data type transactionstatus Transaction Response page Page number object result Return object Data type errorcode Error identification 0: correct; 1: incorrect replycode error code replytext Error message memo ote appame service name success boolean whether succeed transactionstatus 4.14 Product Shelves ame Interface name thisshop.goods.publish.update Function description Category query API Access path /api/shop/router/rest data format json Request mode Post true: success failure false:

58 Request message sample "data": "spuid": "58841", "typpublish":1, "method": "thisshop.goods.publish.update" Return data Request parameter Data type typpublish int spuid Leng th 1 32 Mandatory spu shelves status, 1-shelf, 2-shelf spu number Response parameters transactionstatus Transaction Response result Return object errorcode Error identification replycode error code replytext Error message memo ote appame service name success boolean whether succeed transactionstatus 0: correct; 1: incorrect true: success failure false:

59 5 Image upload interface ame Interface name thisshop.goods.image.upload Function description Product image upload service Access path /api/image/upload data format form-data Request mode Post Request message Return data sample "transactionstatus": "errorcode": "0", "replycode": null, "replytext": null, "memo": null, "appame": "tft-api-server", "success": true, "imageurl": "tempshop/tf10000/ /0a1e a41c3a3cc88e8e 08619C5.jpg"

60 Request parameter file file file Only the following picture types are supported and cannot exceed 1MB..jpg.png.jpeg.bmp.gif appid appid timestamp Timestamp token Token method Method name nonce serial number sign signature 除去 file 和 sign Response parameters transactionstatus Transaction Response imageurl Picture path errorcode Error identification replycode error code replytext Error message memo ote transactionstatus 0: correct; 1: incorrect

61 appame service name success Boolean whether succeed imageurl Picture path true: success failure false: 6 Picture path errorcode success 0 true 1 false replycode replytext Remark success API does not have a corresponding Failed business method (see the replytext Merchant is not authorized to bind error descriptio Barcode request parameters n when cannot exceed 10 at a time returning) Parameter check failed, parameter cannot be empty XX When the inventory is fully modified, the inventory quantity cannot be less than o corresponding data found (e.g. order or product does not exist) Request parameter check failed: xx time format is incorrect The number of skuid in the logistics package information must be greater than Order status is not in the scope of

62 delivery Paging parameter pagesize cannot exceed The SKU in the logistics package is not in the order

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

获取 Access Token access_token 是接口的全局唯一票据, 接入方调用各接口时都需使用 access_token 开发者需要进行妥善保存 access_token 的存储至少要保留 512 个字符空间 access_token 的有效期目前为 2 个小时, 需定时刷新, 重复

获取 Access Token access_token 是接口的全局唯一票据, 接入方调用各接口时都需使用 access_token 开发者需要进行妥善保存 access_token 的存储至少要保留 512 个字符空间 access_token 的有效期目前为 2 个小时, 需定时刷新, 重复 获取 Access Token access_token 是接口的全局唯一票据, 接入方调用各接口时都需使用 access_token 开发者需要进行妥善保存 access_token 的存储至少要保留 512 个字符空间 access_token 的有效期目前为 2 个小时, 需定时刷新, 重复 获取将导致上次获取的 access_token 失效 接入方可以使用 AppID 和 AppSecret

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

ch_code_infoaccess

ch_code_infoaccess 地 產 代 理 監 管 局 公 開 資 料 守 則 2014 年 5 月 目 錄 引 言 第 1 部 段 數 適 用 範 圍 1.1-1.2 監 管 局 部 門 1.1 紀 律 研 訊 1.2 提 供 資 料 1.3-1.6 按 慣 例 公 布 或 供 查 閱 的 資 料 1.3-1.4 應 要 求 提 供 的 資 料 1.5 法 定 義 務 及 限 制 1.6 程 序 1.7-1.19 公 開 資

More information

HCD0174_2008

HCD0174_2008 Reliability Laboratory Page: 1 of 5 Date: December 23, 2008 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified

More information

Microsoft Word - CX VMCO 3 easy step v1.doc

Microsoft Word - CX VMCO 3 easy step v1.doc Abacus Fully Automated Process of VMCO on CX, KA, CPH & KAH 16 Nov 2009 To streamline the VMCO handling on CX, KA, CPH & KAH, Abacus is pleased to inform you that manual submission of VMCO to CX/KA/CPH/KAH

More information

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc 聖 保 羅 男 女 中 學 學 年 中 一 入 學 申 請 申 請 須 知 申 請 程 序 : 請 將 下 列 文 件 交 回 本 校 ( 麥 當 勞 道 33 號 ( 請 以 A4 紙 張 雙 面 影 印, 並 用 魚 尾 夾 夾 起 : 填 妥 申 請 表 並 貼 上 近 照 小 學 五 年 級 上 下 學 期 成 績 表 影 印 本 課 外 活 動 表 現 及 服 務 的 證 明 文 件 及

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

WWW PHP

WWW PHP WWW PHP 2003 1 2 function function_name (parameter 1, parameter 2, parameter n ) statement list function_name sin, Sin, SIN parameter 1, parameter 2, parameter n 0 1 1 PHP HTML 3 function strcat ($left,

More information

Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1-1MRS755673

Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1-1MRS755673 Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1 - Contents MicroSCADA Pro Portal Marketing and sales Ordering MicroSCADA Pro Partners Club 2005 ABB - 2 - MicroSCADA Pro - Portal Imagine that

More information

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

Microsoft Word - Datastream5.1_使用說明201110

Microsoft Word - Datastream5.1_使用說明201110 Datastream 5.1 操 作 手 冊 政 大 圖 書 館 商 圖 分 館 編 製 2011.10 版 權 屬 於 國 立 政 治 大 學 圖 書 館. 請 勿 侵 權 1 目 錄 前 言 -------------------------------------------------------------2 第 壹 章 Datastream advanced -----------------------------------2

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

Microsoft Word - HSK使用手册.doc

Microsoft Word - HSK使用手册.doc HSK / New HSK Online Mock Test/Practices Student User Manual Table of contents New User... 2 1.1 Register... 2 1.2 Login... 3 1.3 Homepage... 4 Free Test... 4 2.1 Start... 5 2.2 Results... 6 Mock Test...

More information

HC50246_2009

HC50246_2009 Page: 1 of 7 Date: June 2, 2009 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更 AX5000 Version 1.0 2006 年 9 錄...1 說...2 說...3...4 說...5 六...6 6.1 率...7 6.2 POST PAY...8 6.3 PREPAY DEPOSIT...9 6.4...10 6.5...11 更...12...12 LCD IC LED Flash 更 兩 RJ11 ( ) DC ON OFF ON 狀 狀 更 OFF 復 狀 說

More information

Microsoft Word - HC20138_2010.doc

Microsoft Word - HC20138_2010.doc Page: 1 of 7 Date: April 26, 2010 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 EAI EAI Middleware EAI 3.1 EAI EAI Client/Server Internet,www,Jav a 3.1 EAI Message Brokers -Data Transformation Business Rule XML XML 37 3.1 XML XML XML EAI XML 1. XML XML Java Script VB Script Active

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

CDWA Mapping. 22 Dublin Core Mapping

CDWA Mapping. 22 Dublin Core Mapping (version 0.23) 1 3... 3 3 3 5 7 10 22 CDWA Mapping. 22 Dublin Core Mapping. 24 26 28 30 33 2 3 X version 0.2 ( ) 4 Int VarcharText byte byte byte Id Int 10 Management Main Code Varchar 30 Code Original

More information

HC20131_2010

HC20131_2010 Page: 1 of 8 Date: April 14, 2010 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

台灣地區同學

台灣地區同學 ACIC 台 灣 地 區 住 宿 家 庭 合 約 / 接 機 / 申 請 表 本 契 約 已 於 中 華 民 國 年 月 日 交 付 消 費 者 攜 回 審 閱 ( 契 約 審 閱 期 間 至 少 為 五 日 ) 甲 方 ( 消 費 者 ) 姓 名 : 甲 方 ( 未 滿 18 歲 代 理 人 ) 姓 名 : 國 民 身 分 證 : 國 民 身 分 證 : 電 話 : 電 話 : 住 居 所 : 住

More information

Collection of 2012 Examination Certificates

Collection of 2012 Examination Certificates 本 局 檔 號 領 取 香 港 年 考 度 試 及 評 通 核 告 局 請 各 與 考 學 校 委 派 職 員 中 學 文 憑 年 考 試 月 / 高 級 日 第 程 四 度 號 會 月 考 證 書 附 外 ), 夾 的 於 領 辦 取 公 單 時 到 間 本 ( 局 星 辦 期 事 一 處 ( 至 地 五 址 :: 上 香 港 )/ 灣 時 香 仔 港 軒 高 分 尼 級 至 詩 程 下 道 度

More information

* RRB *

* RRB * *9000000000RRB0010040* *9000000000RRB0020040* *9000000000RRB0030040* *9000000000RRB0040040* *9000000000RRC0010050* *9000000000RRC0020050* *9000000000RRC0030050* *9000000000RRC0040050* *9000000000RRC0050050*

More information

CANVIO_AEROCAST_CS_EN.indd

CANVIO_AEROCAST_CS_EN.indd 简 体 中 文...2 English...4 SC5151-A0 简 体 中 文 步 骤 2: 了 解 您 的 CANVIO AeroCast CANVIO AeroCast 无 线 移 动 硬 盘 快 速 入 门 指 南 欢 迎 并 感 谢 您 选 择 TOSHIBA 产 品 有 关 您 的 TOSHIBA 产 品 的 详 情, 请 参 阅 包 含 更 多 信 息 的 用 户 手 册 () 安

More information

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

2 SGML, XML Document Traditional WYSIWYG Document Content Presentation Content Presentation Structure Structure? XML/SGML 3 2 SGML SGML Standard Gener

2 SGML, XML Document Traditional WYSIWYG Document Content Presentation Content Presentation Structure Structure? XML/SGML 3 2 SGML SGML Standard Gener SGML HTML XML 1 SGML XML Extensible Markup Language XML SGML Standard Generalized Markup Language, ISO 8879, SGML HTML ( Hypertext Markup Language HTML) (Markup Language) (Tag) < > Markup (ISO) 1986 SGML

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

概述

概述 OPC Version 1.6 build 0910 KOSRDK Knight OPC Server Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOS_Init...5 2.2.2 KOS_InitB...5 2.2.3

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

Microsoft Word - 1041106

Microsoft Word - 1041106 輔 仁 大 學 經 費 核 銷 作 業 須 知 中 華 民 國 一 百 零 四 年 八 月 目 錄 一 報 帳 流 程... 3 二 憑 證 種 類 及 內 容... 7 三 憑 證 範 例... 10 四 經 費 核 銷 要 點... 15 五 常 見 錯 誤... 18 六 相 關 法 規... 19 輔 仁 大 學 預 算 執 行 辦 法... 20 輔 仁 大 學 採 購 作 業 辦 法...

More information

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn Xi III Zebra XI III 1 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn 230V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 厦门大学博硕士论文摘要库

UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 厦门大学博硕士论文摘要库 10384 200128011 UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 2004 5 2004 2004 2004 5 World Wide Web Robot Web / (Focused Crawling) Web Meta data Web Web I

More information

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 题 目 : 农 村 电 工 岗 位 培 训 考 核 与 鉴 定 ( 理 论 部 分 ) 的 计 算 机 远 程 考 试 系 统 ( 服 务 器 端 ) 的 开 发 与 实 现 英 文 题 目 :The Realization of Authenticating Examination System With Computer & Web for

More information

停止混流接口 请注意 : 该功能需要联系 ZEGO 技术支持开通 1 接口调用说明 http 请求方式 : POST/FORM, 需使用 https 正式环境地址 access_token=access_token (http

停止混流接口 请注意 : 该功能需要联系 ZEGO 技术支持开通 1 接口调用说明 http 请求方式 : POST/FORM, 需使用 https 正式环境地址   access_token=access_token (http 停止混流接口 请注意 : 该功能需要联系 ZEGO 技术支持开通 1 接口调用说明 http 请求方式 : POST/FORM, 需使用 https 正式环境地址 https://webapi.zego.im/cgi/stop-mix? access_token=access_token (https://webapi.zego.im/cgi/stop-mix? access_token=access_token)

More information

10384 X2009230010 UDC The Design and Implementation of Small and Medium-sized Courier Company Logistics Vehicle Scheduling System 2012 06 Abstract With the arrival of the information age, tremendous

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

「人名權威檔」資料庫欄位建置表

「人名權威檔」資料庫欄位建置表 ( version 0.2) 1 3 3 3 3 5 6 9.... 11 Entities - Relationship Model..... 12 13 14 16 2 ( ) Int Varchar Text byte byte byte Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate Type Varchar 10

More information

HC20093A_2008

HC20093A_2008 Reliability Laboratory Page: 1 of 6 Date: March 5, 2008 KORENIX TECHNOLOGY., CO. FL 9, NO. 100-1, MIN-CHUAN RD. SHING TIEN CITY, TAIPEI, TAIWAN The following merchandise was submitted and identified by

More information

HC70245_2008

HC70245_2008 Reliability Laboratory Page: 1 of 6 Date: September 5, 2008 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified

More information

untitled

untitled ArcGIS Server Web services Web services Application Web services Web Catalog ArcGIS Server Web services 6-2 Web services? Internet (SOAP) :, : Credit card authentication, shopping carts GIS:, locator services,

More information

gebook84-1

gebook84-1 1 1.1 1.1.1 1.1.2 2 1 ( ) 1. 2. 3. 1.2 1.2.1 3 1. 5 0 20 2 ( 3 ) ( ) ( ) ( ) 0 1 0 2 0 3 4 1 0 4 0 5 0 6 ( 4 ) ( ) ( ) ( ) ( ) 2. ( 3 ) ( ) ( ) ( 5 ) ( ) ( 4 ) ) ( ( ) ( S I C ) ( 1 2 0 21 4 9 50 9 9 )

More information

59 1 CSpace 2 CSpace CSpace URL CSpace 1 CSpace URL 2 Lucene 3 ID 4 ID Web 1. 2 CSpace LireSolr 3 LireSolr 3 Web LireSolr ID

59 1 CSpace 2 CSpace CSpace URL CSpace 1 CSpace URL 2 Lucene 3 ID 4 ID Web 1. 2 CSpace LireSolr 3 LireSolr 3 Web LireSolr ID 58 2016. 14 * LireSolr LireSolr CEDD Ajax CSpace LireSolr CEDD Abstract In order to offer better image support services it is necessary to extend the image retrieval function of our institutional repository.

More information

第1章 簡介

第1章 簡介 EAN.UCCThe Global Language of Business 4 512345 678906 > 0 12345 67890 5 < > 1 89 31234 56789 4 ( 01) 04601234567893 EAN/UCC-14: 15412150000151 EAN/UCC-13: 5412150000161 EAN/UCC-14: 25412150000158 EAN/UCC-13:

More information

Microsoft Word - 0000000673_4.doc

Microsoft Word - 0000000673_4.doc 香 港 特 別 行 政 區 政 府 知 識 產 權 署 商 標 註 冊 處 Trade Marks Registry, Intellectual Property Department The Government of the Hong Kong Special Administrative Region 在 註 冊 申 請 詳 情 公 布 後 要 求 修 訂 貨 品 / 服 務 說 明 商 標

More information

HC70044_2008

HC70044_2008 Page: 1 of 9 Date: July 10, 2008 KORENIX TECHNOLOGY CO., LTD. 9 F, NO. 100-1, MING-CHUAN RD., SHIN TIEN CITY, TAIPEI, TAIWAN The following merchandise was submitted and identified by the vendor as: Product

More information

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库 10384 15620071151397 UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 2010 4 Duffee 1999 AAA Vasicek RMSE RMSE Abstract In order to investigate whether adding macro factors

More information

RUN_PC連載_8_.doc

RUN_PC連載_8_.doc PowerBuilder 8 (8) Web DataWindow ( ) DataWindow Web DataWindow Web DataWindow Web DataWindow PowerDynamo Web DataWindow / Web DataWindow Web DataWindow Wizard Web DataWindow Web DataWindow DataWindow

More information

Computer Architecture

Computer Architecture ECE 3120 Computer Systems Assembly Programming Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun21 Email: msjeedigun21@tntech.edu Tel: 931-372-6181, Prescott Hall 120 Prev: Basic computer concepts

More information

目 录 目 录 1. 安 装 和 快 速 入 门 附 件 1.1 随 机 附 件... 3 1.2 附 件 信 息... 3 连 接 和 设 定 1.3 连 接... 3 1.4 记 录 纸... 4 快 速 入 门 1.5 发 送 传 真 / 复 印... 5 1.6 接 收 传 真... 5 2

目 录 目 录 1. 安 装 和 快 速 入 门 附 件 1.1 随 机 附 件... 3 1.2 附 件 信 息... 3 连 接 和 设 定 1.3 连 接... 3 1.4 记 录 纸... 4 快 速 入 门 1.5 发 送 传 真 / 复 印... 5 1.6 接 收 传 真... 5 2 KX-FT832CN KX-FT836CN KX-FT836 感 谢 您 购 买 Panasonic 传 真 机 请 于 使 用 前 仔 细 阅 读 操 作 使 用 说 明 书, 并 妥 善 保 管 本 机 与 来 电 显 示 兼 容 您 必 须 向 服 务 供 应 商 / 电 话 公 司 申 请 并 取 得 相 应 的 服 务 目 录 目 录 1. 安 装 和 快 速 入 门 附 件 1.1 随

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

Microsoft Word - Functional_Notes_3.90_CN.doc

Microsoft Word - Functional_Notes_3.90_CN.doc GeO-iPlatform Functional Notes GeO Excel Version 3.90 Release Date: December 2008 Copyrights 2007-2008. iplatform Corporation. All rights reserved. No part of this manual may be reproduced in any form

More information

通 用 申 请 填 写 流 程 简 图 首 次 登 陆 已 注 册 用 户 登 录 ( 最 终 提 交 前 可 无 限 次 登 录 修 改 ) 注 册 账 户 College Search 中 添 加 New York University Common App 填 写 ( 包 含 两 篇 写 作

通 用 申 请 填 写 流 程 简 图 首 次 登 陆 已 注 册 用 户 登 录 ( 最 终 提 交 前 可 无 限 次 登 录 修 改 ) 注 册 账 户 College Search 中 添 加 New York University Common App 填 写 ( 包 含 两 篇 写 作 上 海 纽 约 大 学 2017 年 秋 季 入 学 Common Application( 通 用 申 请 ) 填 写 指 导 教 程 上 海 纽 约 大 学 是 中 国 教 育 部 正 式 批 准 设 立 的 第 一 所 中 美 合 作 大 学, 也 是 纽 约 大 学 全 球 教 育 体 系 (Global Network University) 的 组 成 部 分, 与 纽 约 校 园 阿

More information

( Version 0.4 ) 1

( Version 0.4 ) 1 ( Version 0.4 ) 1 3 3.... 3 3 5.... 9 10 12 Entities-Relationship Model. 13 14 15.. 17 2 ( ) version 0.3 Int TextVarchar byte byte byte 3 Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate

More information

Go构建日请求千亿微服务最佳实践的副本

Go构建日请求千亿微服务最佳实践的副本 Go 构建 请求千亿级微服务实践 项超 100+ 700 万 3000 亿 Goroutine & Channel Goroutine Channel Goroutine func gen() chan int { out := make(chan int) go func(){ for i:=0; i

More information

LSC操作说明

LSC操作说明 1 C H R I S T A L P H A 1-4 LSC 型 Part. No. 102041 A L P H A 2-4 LSC 型 Part. No. 10204 冷 冻 干 燥 机 操 作 说 明 新 研 制 的 LSC-8 控 制 器, 具 备 图 形 显 示 功 能, 能 以 数 据 表 形 式 显 示 参 数, 并 可 选 配 控 制 软 件 LSC-8 1/4 VGA 大 屏 幕

More information

USPTO Academic research Corporate needs Global/International Inventors Libraries News Media/Publication Patent Attorney or Agent USPTO e (ebusiness Ce

USPTO Academic research Corporate needs Global/International Inventors Libraries News Media/Publication Patent Attorney or Agent USPTO e (ebusiness Ce I 2002.03.27 2 http://www.uspto.gov/ http://www.wipo.org/ http://ipdl.wipo.int/ esp@cenet http://www.european-patent-office.org/ http://ep.espacenet.com/ http://www.cpo.cn.net/ 3 4 USPTO USPTO First time

More information

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 WWW PHP 2003 1 Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 Comments PHP Shell Style: # C++ Style: // C Style: /* */ $value = $p * exp($r * $t); # $value

More information

Microsoft Word - P SDV series.DOC

Microsoft Word - P SDV series.DOC 片式压敏电阻器 SDV 系列 Chip SDV Series Operating Temp. : -55 ~ +125 特征 SMD 结构适合高密度安装 优异的限压比, 响应时间短 (

More information

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information

Microsoft PowerPoint ARIS_Platform_en.ppt

Microsoft PowerPoint ARIS_Platform_en.ppt ARIS Platform www.ixon.com.tw ARIS ARIS Architecture of Integrated Information System Prof. Dr. Dr. h.c. mult. August-Wilhelm Scheer ARIS () 2 IDS Scheer AG International Presence >> Partners and subsidiaries

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

AL-MX200 Series

AL-MX200 Series PostScript Level3 Compatible NPD4760-00 TC Seiko Epson Corporation Seiko Epson Corporation ( ) Seiko Epson Corporation Seiko Epson Corporation Epson Seiko Epson Corporation Apple Bonjour ColorSync Macintosh

More information

3.1 num = 3 ch = 'C' 2

3.1 num = 3 ch = 'C' 2 Java 1 3.1 num = 3 ch = 'C' 2 final 3.1 final : final final double PI=3.1415926; 3 3.2 4 int 3.2 (long int) (int) (short int) (byte) short sum; // sum 5 3.2 Java int long num=32967359818l; C:\java\app3_2.java:6:

More information

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 B. 啟 用 智 慧 型 裝 置 的 無 線 Wi-Fi C. 選 擇 無 線 網 路 名 稱 "edimax.setup"

More information

前言 C# C# C# C C# C# C# C# C# microservices C# More Effective C# More Effective C# C# C# C# Effective C# 50 C# C# 7 Effective vii

前言 C# C# C# C C# C# C# C# C# microservices C# More Effective C# More Effective C# C# C# C# Effective C# 50 C# C# 7 Effective vii 前言 C# C# C# C C# C# C# C# C# microservices C# More Effective C# More Effective C# C# C# C# Effective C# 50 C# C# 7 Effective vii C# 7 More Effective C# C# C# C# C# C# Common Language Runtime CLR just-in-time

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

运动员治疗用药豁免申报审批办法

运动员治疗用药豁免申报审批办法 运 动 员 治 疗 用 药 豁 免 管 理 办 法 第 一 条 为 了 保 护 运 动 员 的 身 心 健 康, 保 证 运 动 员 的 伤 病 得 到 及 时 安 全 的 治 疗, 保 障 运 动 员 公 平 参 与 体 育 运 动 的 权 利, 根 据 国 务 院 反 兴 奋 剂 条 例, 参 照 世 界 反 兴 奋 剂 条 例 和 治 疗 用 药 豁 免 国 际 标 准 的 有 关 条 款,

More information

PKCS# PEM Erreur! Signet non défini

PKCS# PEM Erreur! Signet non défini TheGreenBow IPSec VPN http://www.thegreenbow.com support@thegreenbow.com TheGreenBow Sistech SA - Sistech 2001-2010 1/27 1... 3 1.1... 3 1.2... 3 2... 4 2.1... 4 2.2 PKCS#12... 6 2.3 PEM... 8 2.4... Erreur!

More information

WFC40810

WFC40810 9000086873 (PD 85 05 10) Operating and Installation Instructions Please read this specification carefully before you use the product. Any failure and losses caused by ignoring the above mentioned items

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 - Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 Power Supplies, Information Technology Equipment Including Electrical Business Equipment - Component

More information

Form: RWPRR401-B

Form: RWPRR401-B Form: RWPRR401-B C C S 通 函 Circular 中 国 船 级 社 (2011 年 ) 通 函 第 81 号 总 第 145 号 2011 年 10 月 17 日 ( 共 4+26 页 ) 发 : 总 部 有 关 处 室 上 海 规 范 所 各 审 图 中 心 各 分 社 本 社 验 船 师 有 关 船 厂 产 品 制 造 厂 设 计 院 及 航 运 公 司 实 施 有 关

More information

<4D6963726F736F667420576F7264202D20B1B4BFCBA5D3BFECBBA1A9FA312E646F63>

<4D6963726F736F667420576F7264202D20B1B4BFCBA5D3BFECBBA1A9FA312E646F63> 大 陸 地 區 人 民 赴 臺 探 親 申 請 旅 行 證 說 明 表 駐 波 士 頓 臺 北 經 濟 文 化 辦 事 處 事 由 條 件 必 備 文 件 申 請 程 序 備 註 探 親 父 母 或 子 女 在 臺 灣 地 區 設 有 戶 籍 依 臺 灣 地 區 公 務 員 及 特 定 身 分 人 員 進 入 大 陸 地 區 許 可 辦 法 規 定 不 得 進 入 大 陸 地 區 探 親 探 病 或

More information

幻灯片 1

幻灯片 1 Bring Shopper Research Into Category Solution Content What is the difference between Shopper Research and Consumer Research? Bring Shopper Research into Category Solution Case Share Page 2 Shopper Research

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

2 response personnel to speed up the rescue operations after various natural or man-made disasters. Keywords: SMS, Database, Disaster

2 response personnel to speed up the rescue operations after various natural or man-made disasters. Keywords: SMS, Database, Disaster Journal of Information, Technology and Society 2004(1) 1 Implementation of Emergency Response SMS System Using DBMS a b c d 1 106 s1428032@ntut.edu.tw, loveru@geoit.ws, aponson@yahoo.com.tw, waltchen@ntut.edu.tw

More information

RUPUML RUP RUP RUP RUP

RUPUML RUP RUP RUP RUP (RUP) 2009.12 RUPUML RUP RUP RUP RUP 1 UML RUPUML UML,: 1() --,: --,: Actor Use case Use case --,,:. UML8,UML!. \. UML4,, UML4! / \\ 12() UML UML 2 UML14,: U SE C A SE 6 8. : use case ,.,UML 2 UMLRUP ;

More information

Domain Management产品文档

Domain Management产品文档 腾讯云Content Delivery Network Domain Management 产品文档 版权声明 2015-2016 腾讯云版权所有 本文档著作权归腾讯云单独所有 未经腾讯云事先书面许可 任何主体不得以任何形式复制 修改 抄袭 传 播全部或部分本文档内容 商标声明 及其它腾讯云服务相关的商标均为腾讯云计算 北京 有限责任公司及其关联公司所有 本文档涉及的第三方 主体的商标 依法由权利人所有

More information

PARTS LIST 零 FB 15/18/20/25/30 FB 15C/18C/20C/25C 勵福 7L 列 Tailift 7L Series Electric Forklift Trucks TAILIFT CO.,LTD. DEC039/

PARTS LIST 零 FB 15/18/20/25/30 FB 15C/18C/20C/25C 勵福 7L 列 Tailift 7L Series Electric Forklift Trucks TAILIFT CO.,LTD. DEC039/ PARTS LIST 零 FB 15/18/20/25/30 FB 15C/18C/20C/25C 勵福 7L 列 Tailift 7L Series Electric Forklift Trucks TAILIFT CO.,LTD. DEC039/06 2012 . 零 勵福 ()7L 列 FB15~30. 零 說 FB15C~25C 索 索 零 數量 便 識 更 零 參 This part manual

More information

Microsoft Word - Lenovo_L15M3PB2 (Winbook)_3S1P_UN38.3 Test Report_SLEU

Microsoft Word - Lenovo_L15M3PB2 (Winbook)_3S1P_UN38.3 Test Report_SLEU Lithium-ion Battery UN38.3 Test Report Recommendations on the TRANSPORT OF DANGEROUS GOODS (Manual of Tests and Criteria, Fifth revised edition, Amend.2) Customer: Lenovo Model: L15M3PB2 Rating: 11.25V,

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

EJB-Programming-4-cn.doc

EJB-Programming-4-cn.doc EJB (4) : (Entity Bean Value Object ) JBuilder EJB 2.x CMP EJB Relationships JBuilder EJB Test Client EJB EJB Seminar CMP Entity Beans Session Bean J2EE Session Façade Design Pattern Session Bean Session

More information

財金資訊-80期.indd

財金資訊-80期.indd IPv6 / LINE YouTube TCP/IP TCP (Transmission Control Protocol) IP (Internet Protocol) (node) (address) IPv4 168.95.1.1 IPv4 1981 RFC 791 --IP IPv4 32 2 32 42 IP (Internet Service Provider ISP) IP IP IPv4

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information