121 lines
2.9 KiB
C#
121 lines
2.9 KiB
C#
/// <summary>
|
|
///Data Object
|
|
///BASIC CLASS FOR TABLE t_Filesmgr
|
|
///By wm
|
|
///on 08/04/2023
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Data;
|
|
using DeiNiu.Data.BaseObject;
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
{
|
|
|
|
#region Filesmgr_base
|
|
/// <summary>
|
|
/// This object represents the properties and methods of a Filesmgr_base.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Filesmgr_base : BaseModel {
|
|
|
|
|
|
internal int _File_type,_OFile_type;
|
|
internal int _File_Project,_OFile_Project;
|
|
internal int _File_ProjectDetail,_OFile_ProjectDetail;
|
|
internal int _File_Emp,_OFile_Emp;
|
|
internal int _file_Dept,_Ofile_Dept;
|
|
internal string _file_dest = String.Empty,_Ofile_dest= String.Empty;
|
|
internal string _File_Desc = String.Empty,_OFile_Desc= String.Empty;
|
|
|
|
internal int _Ooperater;
|
|
internal string _create_time = String.Empty,_Ocreate_time= String.Empty;
|
|
|
|
|
|
public Filesmgr_base () {
|
|
}
|
|
public Filesmgr_base (int id) {
|
|
_id=id;
|
|
getModel();
|
|
}
|
|
public Filesmgr_base(DataRow dr)
|
|
{
|
|
getModel(dr);
|
|
}
|
|
public Filesmgr_base(System.Data.SqlClient.SqlConnection _Conn)
|
|
: base(_Conn)
|
|
{
|
|
|
|
}
|
|
protected override void getImp()
|
|
{
|
|
model_imp = new Filesmgr_base_Imp();
|
|
}
|
|
#region Public Properties
|
|
public int File_type{
|
|
get {return _File_type;}
|
|
set {_File_type = value;}
|
|
}
|
|
|
|
public int File_Project{
|
|
get {return _File_Project;}
|
|
set {_File_Project = value;}
|
|
}
|
|
|
|
public int File_ProjectDetail{
|
|
get {return _File_ProjectDetail;}
|
|
set {_File_ProjectDetail = value;}
|
|
}
|
|
|
|
public int File_Emp{
|
|
get {return _File_Emp;}
|
|
set {_File_Emp = value;}
|
|
}
|
|
|
|
public int file_Dept{
|
|
get {return _file_Dept;}
|
|
set {_file_Dept = value;}
|
|
}
|
|
|
|
public string file_dest{
|
|
get {return _file_dest;}
|
|
set {_file_dest = value;}
|
|
}
|
|
|
|
public string File_Desc{
|
|
get {return _File_Desc;}
|
|
set {_File_Desc = 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{File_type,File_Project,File_ProjectDetail,File_Emp,file_Dept,file_dest,File_Desc,operater}
|
|
#endregion
|
|
|
|
|
|
}
|
|
#endregion
|
|
}
|