1
2
3
4
5
6
7
8
9
10
namespace NewPdaSqlServer.Dto.service;
 
public class ScanWorkRequest
{
    public string? UserNo { get; set; }
    public string? ItemBarcode { get; set; }
    public string? StaffNo { get; set; }
 
    public decimal? Quantity { get; set; }
}