From 029865832637812cf534027bd63126e81394c22e Mon Sep 17 00:00:00 2001 From: puem2gl9z <2777269348@qq.com> Date: Fri, 30 Aug 2024 15:38:11 +0800 Subject: [PATCH] ADD file via upload --- Constant.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Constant.java diff --git a/Constant.java b/Constant.java new file mode 100644 index 0000000..477b2b4 --- /dev/null +++ b/Constant.java @@ -0,0 +1,8 @@ +package com.example.drink_order_system; +public class Constant { + public static final String IP="192.168.43.176"; + public static final String SIGNUP_URL = "http://"+IP+":8080/warehouse_management_system_war_exploded/androidRegister"; + public static final String LOGIN_URL = "http://"+IP+":8080/warehouse_management_system_war_exploded/androidLogin";//登录检测接口 + public static final String MINE_URL="http://"+IP+":8080/warehouse_management_system_war_exploded/customerInfo"; + public static final String CMINE_URL="http://"+IP+":8080/warehouse_management_system_war_exploded/changeCustomerInfo"; +}