You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.7 KiB
C#
116 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
namespace DSWeb.Areas.Account.Models.Chfee_payapplication
|
|
{
|
|
[JsonObject]
|
|
public class ChfeeFile
|
|
{
|
|
#region private Fields
|
|
|
|
private string _gID;
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string GID
|
|
{
|
|
get { return _gID; }
|
|
set { _gID = value; }
|
|
}
|
|
|
|
private string _BillNo;
|
|
[ModelDB]
|
|
public string BillNo
|
|
{
|
|
get { return _BillNo; }
|
|
set { _BillNo = value; }
|
|
}
|
|
|
|
private int _file_Type;
|
|
[ModelDB]
|
|
public int File_Type
|
|
{
|
|
get { return _file_Type; }
|
|
set { _file_Type = value; }
|
|
}
|
|
|
|
private string _File_DocType;
|
|
[ModelDB]
|
|
public string File_DocType
|
|
{
|
|
get { return _File_DocType; }
|
|
set { _File_DocType = value; }
|
|
}
|
|
private string _File_DocNo;
|
|
[ModelDB]
|
|
public string File_DocNo
|
|
{
|
|
get { return _File_DocNo; }
|
|
set { _File_DocNo = value; }
|
|
}
|
|
|
|
private string _File_Name;
|
|
[ModelDB]
|
|
public string File_Name
|
|
{
|
|
get { return _File_Name; }
|
|
set { _File_Name = value; }
|
|
}
|
|
|
|
private string _File_Path;
|
|
[ModelDB]
|
|
public string File_Path
|
|
{
|
|
get { return _File_Path; }
|
|
set { _File_Path = value; }
|
|
}
|
|
|
|
private string _createTime;
|
|
public string CreateTime
|
|
{
|
|
get { return _createTime; }
|
|
set { _createTime = value; }
|
|
}
|
|
|
|
private string _updateTime;
|
|
public string UpdateTime
|
|
{
|
|
get { return _updateTime; }
|
|
set { _updateTime = value; }
|
|
}
|
|
|
|
private string _certTypeName;
|
|
public string CertTypeName
|
|
{
|
|
get { return _certTypeName; }
|
|
set { _certTypeName = value; }
|
|
}
|
|
|
|
private string _operator;
|
|
[ModelDB]
|
|
public string Operator
|
|
{
|
|
get { return _operator; }
|
|
set { _operator = value; }
|
|
}
|
|
|
|
|
|
private decimal _delFlag;
|
|
[ModelDB]
|
|
public decimal DelFlag
|
|
{
|
|
get { return _delFlag; }
|
|
set { _delFlag = value; }
|
|
}
|
|
|
|
private string _File_OriginalName;
|
|
[ModelDB]
|
|
public string File_OriginalName
|
|
{
|
|
get { return _File_OriginalName; }
|
|
set { _File_OriginalName = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
} |