Sign in

wms / hhwms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • hhwms
  • ..
  • domainBack
  • Host.java
  • fix:erp升级接口及修改;
    b4bd2ac2
    周鸿 authored
    2024-07-02 09:38:18 +0800  
    Browse Dir »
Host.java 345 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.huaheng.api.erp.domainBack;

import lombok.Data;

@Data
public class Host {
    //客户端产品
    private  String prod="WMS";
    //客户端ip
    private  String ip="127.0.0.1";
    //语言别
    private  String lang="zh_CN";
    //时间戳
    private  String timestamp;
    //用户
    private  String acct="tiptop";


}