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.
87 lines
1.8 KiB
C#
87 lines
1.8 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.CodeRptFeeGroups
|
|
{
|
|
|
|
[JsonObject]
|
|
public class CodeRptFeeGroup : ModelObjectBillHead
|
|
{
|
|
#region 私有成员
|
|
private string _DM_ID =Guid.NewGuid().ToString();//业务编号
|
|
private string _RPTNAME = "";//
|
|
private string _RPTTYPE = "";//
|
|
private string _REMARKS = "";
|
|
private string _INPUTBY = "";
|
|
private string _INPUTDATE ="";//录入日期
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
public CodeRptFeeGroup()
|
|
{
|
|
TableName = "code_rpt_feegroup_format";
|
|
}
|
|
|
|
#region 读写属性
|
|
/// <summary>
|
|
/// 主键唯一值
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public string DM_ID
|
|
{
|
|
get { return _DM_ID; }
|
|
set { _DM_ID = value; }
|
|
}
|
|
|
|
[ModelDB]
|
|
public string RPTNAME
|
|
{
|
|
get { return _RPTNAME; }
|
|
set { _RPTNAME = value; }
|
|
}
|
|
[ModelDB]
|
|
public string RPTTYPE
|
|
{
|
|
get { return _RPTTYPE; }
|
|
set { _RPTTYPE = value; }
|
|
}
|
|
|
|
[ModelDB]
|
|
public string INPUTBY
|
|
{
|
|
get { return _INPUTBY; }
|
|
set { _INPUTBY = value; }
|
|
}
|
|
/// <summary>
|
|
|
|
[ModelDB]
|
|
public string INPUTDATE { get { return _INPUTDATE; } set { _INPUTDATE = value; } }
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[ModelDB]
|
|
public string REMARKS
|
|
{
|
|
get { return _REMARKS; }
|
|
set { _REMARKS = value; }
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|