Sign in

wms / wms_ningxiangwanrong · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_ningxiangwanrong
  • ..
  • domain
  • U8Result.java
  • U8单据推送模块
    24e7120e
    xcq authored
    2022-11-02 08:48:41 +0800  
    Browse Code »
U8Result.java 291 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 20 21
package com.huaheng.api.U8.domain;

import lombok.Data;

import javax.xml.bind.annotation.XmlRootElement;

/**
 * U8返回结果类
 * @author xcq
 */
@Data
public class U8Result {
    /**
     * 错误码,0 为正常。
     */
    private String message;

    private String result;


}