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.
140 lines
3.6 KiB
C#
140 lines
3.6 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.MsFeeTemplate
|
|
{
|
|
|
|
[JsonObject]
|
|
public class FeeTemplate : ModelObjectBase
|
|
{
|
|
#region 私有成员
|
|
private string _gid;//主键唯一值
|
|
private string _name;//费用模板系统名称
|
|
private string _description;//费用模板中文名称或描述信息
|
|
private int _op_type;//业务种类
|
|
private int _fee_type;//费用类型
|
|
private string _op_typeref;//业务种类
|
|
private string _fee_typeref;//费用类型
|
|
|
|
private string _create_user;//创建人
|
|
private DateTime _create_time;//创建时间
|
|
private string _modified_user;//最后一次更新操作人GID
|
|
private DateTime _modified_time;//最后一次更新操作时间
|
|
private string _remark;//备注
|
|
#endregion
|
|
|
|
public FeeTemplate()
|
|
{
|
|
TableName = "code_fee_template";
|
|
}
|
|
|
|
#region 读写属性
|
|
/// <summary>
|
|
/// 主键唯一值
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 费用模板系统名称
|
|
/// </summary>
|
|
public string Name
|
|
{
|
|
get { return _name; }
|
|
set { _name = value; }
|
|
}
|
|
/// <summary>
|
|
/// 费用模板中文名称或描述信息
|
|
/// </summary>
|
|
public string Description
|
|
{
|
|
get { return _description; }
|
|
set { _description = value; }
|
|
}
|
|
/// <summary>
|
|
/// 业务种类
|
|
/// </summary>
|
|
public int OpType
|
|
{
|
|
get { return _op_type; }
|
|
set { _op_type = value; }
|
|
}
|
|
/// <summary>
|
|
/// 费用类型
|
|
/// </summary>
|
|
public int FeeType
|
|
{
|
|
get { return _fee_type; }
|
|
set { _fee_type = value; }
|
|
}
|
|
/// <summary>
|
|
/// 业务种类
|
|
/// </summary>
|
|
public string OpTyperef
|
|
{
|
|
get { return _op_typeref; }
|
|
set { _op_typeref = value; }
|
|
}
|
|
/// <summary>
|
|
/// 费用类型
|
|
/// </summary>
|
|
public string FeeTyperef
|
|
{
|
|
get { return _fee_typeref; }
|
|
set { _fee_typeref = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
public string CreateUser
|
|
{
|
|
get { return _create_user; }
|
|
set { _create_user = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreateTime
|
|
{
|
|
get { return _create_time; }
|
|
set { _create_time = value; }
|
|
}
|
|
/// <summary>
|
|
/// 最后一次更新操作人GID
|
|
/// </summary>
|
|
public string ModifiedUser
|
|
{
|
|
get { return _modified_user; }
|
|
set { _modified_user = value; }
|
|
}
|
|
/// <summary>
|
|
/// 最后一次更新操作时间
|
|
/// </summary>
|
|
public DateTime ModifiedTime
|
|
{
|
|
get { return _modified_time; }
|
|
set { _modified_time = value; }
|
|
}
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark
|
|
{
|
|
get { return _remark; }
|
|
set { _remark = value; }
|
|
}
|
|
/// <summary>
|
|
/// 费用模板费用明细
|
|
/// </summary>
|
|
|
|
#endregion
|
|
}
|
|
}
|