feat:新增取消和另一个预定

This commit is contained in:
yujj128
2025-06-09 11:45:17 +08:00
parent c7138efec9
commit a284c533a8

20
.env
View File

@@ -7,4 +7,22 @@ MODEL_NAME=deepseek-chat
#放行host地址
DJANGO_ALLOWED_HOSTS=192.168.237.130,127.0.0.1,10.212.27.4
#是否开启debug模式
DJANGO_DEBUG_ENABLE=False
DJANGO_DEBUG_ENABLE=False
DEFAULT_AUTH_URL = 'https://oa-dev.yced.com.cn/iuap-api-auth'
DEFAULT_GATEWAY_URL = 'https://oa-dev.yced.com.cn/iuap-api-gateway '
TEMP_TENANT_ID = 'pr3rl2oj'
APPKEY = 'e5d615eb169944abb3a1db5bd699ca65'
APPSECRET = '84bb250c995c6161a97aebc2296abe558f6551ac'
DEFAULT_HEADER = {'Content-Type': 'application/json'}
# General Purpose Interface
TOKEN_INTF = '/open-auth/selfAppAuth/getAccessToken'
GATEWAY_INTF = '/open-auth/dataCenter/getGatewayAddress'
# Service Interface
QUERY_MEETING_ROOM_TYPE = ['GET', '/yonbip/uspace/external/access/getMeetingRoomType']
QUERY_MEETING_ROOM = ['GET', '/yonbip/uspace/external/access/getMeetingRoom']
QUERY_MEETINGBOOKING_INFO = ['GET', '/yonbip/uspace/external/access/getDestineInformation']
BOOK_MEETING_ROOM = ['POST', '/yonbip/uspace/destine/Meeting']
CANCEL_MEETING = ['POST', '/yonbip/uspace/cancel/Meeting']
BOOKMEETING = ['POST', '/yonbip/uspace/external/access/book']