145 lines
3.9 KiB
C#
145 lines
3.9 KiB
C#
/// <summary>
|
|
///Data Object
|
|
///BASIC CLASS FOR TABLE t_wmsOutValidationException
|
|
///By wm
|
|
///on 08/04/2023
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Data;
|
|
using DeiNiu.Data.BaseObject;
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
{
|
|
|
|
#region WmsOutValidationException_base
|
|
/// <summary>
|
|
/// This object represents the properties and methods of a WmsOutValidationException_base.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class WmsOutValidationException_base : BaseModel {
|
|
|
|
|
|
internal bool _pickDetail,_OpickDetail;
|
|
internal string _waveOrder = String.Empty,_OwaveOrder= String.Empty;
|
|
internal string _pickOrder = String.Empty,_OpickOrder= String.Empty;
|
|
internal int _exception,_Oexception;
|
|
internal string _exceptionRemark = String.Empty,_OexceptionRemark= String.Empty;
|
|
internal string _exceptionLink = String.Empty,_OexceptionLink= String.Empty;
|
|
internal string _resolveRemark = String.Empty,_OresolveRemark= String.Empty;
|
|
internal int _resove,_Oresove;
|
|
internal int _validatedBy,_OvalidatedBy;
|
|
internal int _resolveBy,_OresolveBy;
|
|
internal int _pickedBy,_OpickedBy;
|
|
|
|
internal int _Ooperater;
|
|
internal string _create_time = String.Empty,_Ocreate_time= String.Empty;
|
|
|
|
|
|
public WmsOutValidationException_base () {
|
|
}
|
|
public WmsOutValidationException_base (int id) {
|
|
_id=id;
|
|
getModel();
|
|
}
|
|
public WmsOutValidationException_base(DataRow dr)
|
|
{
|
|
getModel(dr);
|
|
}
|
|
public WmsOutValidationException_base(System.Data.SqlClient.SqlConnection _Conn)
|
|
: base(_Conn)
|
|
{
|
|
|
|
}
|
|
protected override void getImp()
|
|
{
|
|
model_imp = new WmsOutValidationException_base_Imp();
|
|
}
|
|
#region Public Properties
|
|
public bool pickDetail{
|
|
get {return _pickDetail;}
|
|
set {_pickDetail = value;}
|
|
}
|
|
|
|
public string waveOrder{
|
|
get {return _waveOrder;}
|
|
set {_waveOrder = value;}
|
|
}
|
|
|
|
public string pickOrder{
|
|
get {return _pickOrder;}
|
|
set {_pickOrder = value;}
|
|
}
|
|
|
|
public int exception{
|
|
get {return _exception;}
|
|
set {_exception = value;}
|
|
}
|
|
|
|
public string exceptionRemark{
|
|
get {return _exceptionRemark;}
|
|
set {_exceptionRemark = value;}
|
|
}
|
|
|
|
public string exceptionLink{
|
|
get {return _exceptionLink;}
|
|
set {_exceptionLink = value;}
|
|
}
|
|
|
|
public string resolveRemark{
|
|
get {return _resolveRemark;}
|
|
set {_resolveRemark = value;}
|
|
}
|
|
|
|
public int resove{
|
|
get {return _resove;}
|
|
set {_resove = value;}
|
|
}
|
|
|
|
public int validatedBy{
|
|
get {return _validatedBy;}
|
|
set {_validatedBy = value;}
|
|
}
|
|
|
|
public int resolveBy{
|
|
get {return _resolveBy;}
|
|
set {_resolveBy = value;}
|
|
}
|
|
|
|
public int pickedBy{
|
|
get {return _pickedBy;}
|
|
set {_pickedBy = value;}
|
|
}
|
|
|
|
public bool dr{
|
|
get {return _dr;}
|
|
|
|
}
|
|
|
|
public int operater{
|
|
get {return _operater;}
|
|
set {_operater = value;}
|
|
}
|
|
|
|
public string create_time{
|
|
get {return _create_time;}
|
|
set {_create_time = value;}
|
|
}
|
|
|
|
public string lastmodified{
|
|
get {return _lastmodified;}
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
#region fieldNames
|
|
public enum fields{pickDetail,waveOrder,pickOrder,exception,exceptionRemark,exceptionLink,resolveRemark,resove,validatedBy,resolveBy,pickedBy,operater}
|
|
#endregion
|
|
|
|
|
|
}
|
|
#endregion
|
|
}
|