package doumeemes.dao.ext.beanDto; 
 | 
  
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.math.BigDecimal; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2023/7/19 17:59 
 | 
 */ 
 | 
@Data 
 | 
public class SubmitTransferInDetailDTO { 
 | 
  
 | 
    @ApiModelProperty(value = "转库单明细行主键") 
 | 
    private Integer wTransferDetailId; 
 | 
  
 | 
    @ApiModelProperty(value = "入库货位主键") 
 | 
    private Integer locationId; 
 | 
  
 | 
    @ApiModelProperty(value = "入库数量数量") 
 | 
    private BigDecimal inNum; 
 | 
  
 | 
} 
 |