Files
scrq-hd/.svn/pristine/e4/e457a399c119ee09f55b49e4f39f09bb40c4d712.svn-base
2025-07-03 10:34:04 +08:00

18 lines
363 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.cmeim.biz.vo;
import com.cmeim.biz.po.InteSidebinDetail;
import lombok.Data;
/**
* @Verasion:1.0
* @Author:DZY
* @Date:2021/12/29
**/
@Data
public class InteSideBinDetailVo extends InteSidebinDetail {
public String location;
/**1首次上料 0再次上料*/
public int isFirst;
/**工单号*/
public String workOrder;
}