Sign in

wms / wms_zhuzhouhangfa · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_zhuzhouhangfa
  • ..
  • domain
  • QueryEntities.java
  • 前端添加回车识别上传,后端添加erp库存查询接口
    4d0410fd
    lector authored
    2021-04-29 23:46:16 +0800  
    Browse Code ยป
QueryEntities.java 315 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.huaheng.api.erp.domain;

import java.util.List;

public class QueryEntities {
    private List<QueryEntity> queryList;

    public List<QueryEntity> getQueryList() {
        return queryList;
    }

    public void setQueryList(List<QueryEntity> queryList) {
        this.queryList = queryList;
    }
}