InventoryDetailQuery.java 643 Bytes
package com.huaheng.api.mes.domain;

import com.huaheng.pc.inventory.inventoryDetail.domain.InventoryDetail;
import lombok.Data;

/** 库存查询
 * @author xcq
 */
@Data
public class InventoryDetailQuery {
    /**
     * 库存详情
     */
    private InventoryDetail inventoryDetail = new InventoryDetail();
    /**
     * 页码
     */
    private Integer pageNum = 1;
    /**
     * 页面数量
     */
    private Integer pageSize = 20;

    /**
     * 开始时间
     */
    private String createdBegin;

    /**
     * 结束时间
     */
    private String createdEnd;

    /**
     * 区域
     */
    private String area;
}