17 lines
587 B
C#
17 lines
587 B
C#
![]() |
namespace Seyounth.Hyosung.Data.Services.Hyosung.Entities;
|
||
|
|
||
|
[SqlSugar.SugarTable("PDA_PUTAWAY")]
|
||
|
public class PDA_PUTAWAY
|
||
|
{
|
||
|
public string BE_ID { get; set; }
|
||
|
public string BARCODE_TYPE { get; set; }
|
||
|
public string BAR_CODE { get; set; }
|
||
|
public DateTime SCAN_DATE { get; set; }
|
||
|
public string ISSUE_FLAG { get; set; }
|
||
|
public string SCAN_TYPE { get; set; }
|
||
|
public string PALLET_NO { get; set; }
|
||
|
public string LOCATION { get; set; }
|
||
|
public string PDA_USER_ID { get; set; }
|
||
|
public string CREATED_BY { get; set; }
|
||
|
public string STATUS { get; set; }
|
||
|
}
|