You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
327 B
18 lines
327 B
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: zuodeng
|
|
* Date: 2018/7/18
|
|
* Time: 上午11:31
|
|
*/
|
|
class DingTalkConstant
|
|
{
|
|
static $CALL_TYPE_OAPI = "oapi";
|
|
static $CALL_TYPE_TOP = "top";
|
|
|
|
static $METHOD_POST = "POST";
|
|
static $METHOD_GET = "GET";
|
|
|
|
static $FORMAT_JSON = "json";
|
|
static $FORMAT_XML = "xml";
|
|
}
|