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.
73 lines
1.6 KiB
C#
73 lines
1.6 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.Import.Models.Cargociq
|
|
{
|
|
[JsonObject]
|
|
public class Import_Cargociq : ModelObjectBillBody
|
|
{
|
|
#region private Fields
|
|
|
|
private string _ID = String.Empty;
|
|
private string _cargoinfoid = String.Empty;
|
|
private string _cargoinfocode = String.Empty;
|
|
private string _ciqcode = String.Empty;
|
|
private string _ciqname = String.Empty;
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
|
|
[ModelDB(MDBType = ModelDBOprationType.EditDelete, IsPrimary = true)]
|
|
public string ID
|
|
{
|
|
get { return _ID; }
|
|
set { _ID = value; }
|
|
}
|
|
[ModelDB]
|
|
public string CargoinfoID
|
|
{
|
|
get { return _cargoinfoid; }
|
|
set { _cargoinfoid = value; }
|
|
}
|
|
[ModelDB]
|
|
public string CargoinfoCode
|
|
{
|
|
get { return _cargoinfocode; }
|
|
set { _cargoinfocode = value; }
|
|
}
|
|
|
|
[ModelDB]
|
|
public string CiqCode
|
|
{
|
|
get { return _ciqcode; }
|
|
set { _ciqcode = value; }
|
|
}
|
|
[ModelDB]
|
|
public string CiqName
|
|
{
|
|
get { return _ciqname; }
|
|
set { _ciqname = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
public Import_Cargociq()
|
|
{
|
|
TableName = "Import_Cargociq";
|
|
}
|
|
|
|
override public string GetBillNoFieldName()
|
|
{
|
|
return "CargoinfoID";
|
|
}
|
|
}
|
|
|
|
#region 参照部分
|
|
|
|
|
|
|
|
#endregion
|
|
}
|