package com.zy.asrs.entity.param; /** * Created by vincent on 2020/7/2 */ public class TrayCodeParam { private String startNo; private Integer count; private Integer type; public String getStartNo() { return startNo; } public void setStartNo(String startNo) { this.startNo = startNo; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public Integer getType() { return type; } public void setType(Integer type) { this.type = type; } }