Sign in

wms / wms-cloud-server · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms-cloud-server
  • ..
  • form
  • TableInfo.java
  • 添加表格显示自定义接口
    74a8d9b8
    DESKTOP-AO0VKC8\mahua authored
    2021-01-08 13:37:45 +0800  
    Browse Code ยป
TableInfo.java 237 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.huaheng.auth.form;

import lombok.Data;

import java.util.List;

@Data
public class TableInfo {

    private Long userId;
    private String warehouseCode;
    private String tableName;
    private List<String> fieldNames;
}