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.
56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//Import_Finance_Rate
|
|
public class Import_Finance_Rate
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GId
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 客户
|
|
/// </summary>
|
|
private string _customer;
|
|
public string Customer
|
|
{
|
|
get{ return _customer; }
|
|
set{ _customer = value; }
|
|
}
|
|
/// <summary>
|
|
/// 利率
|
|
/// </summary>
|
|
private decimal? _rate;
|
|
public decimal? Rate
|
|
{
|
|
get{ return _rate; }
|
|
set{ _rate = value; }
|
|
}
|
|
/// <summary>
|
|
/// 超期天数
|
|
/// </summary>
|
|
private int? _extendeddays;
|
|
public int? ExtendedDays
|
|
{
|
|
get{ return _extendeddays; }
|
|
set{ _extendeddays = value; }
|
|
}
|
|
/// <summary>
|
|
/// 过期时间
|
|
/// </summary>
|
|
private DateTime? _expireddate;
|
|
public DateTime? ExpiredDate
|
|
{
|
|
get{ return _expireddate; }
|
|
set{ _expireddate = value; }
|
|
}
|
|
}
|
|
}
|