package common // 通用常量信息 // www主域 const WWW = "www." // http请求 const HTTP = "http://" // https请求 const HTTPS = "https://" // 通用状态标识-正常/成功/是 const STATUS_YES = "1" // 通用状态标识-停用/失败/否 const STATUS_NO = "0" // 上下文信息-登录用户 const CTX_LOGIN_USER = "loginuser"