using System;
using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.Entity
{
public class Bill_Account
{
[Key]
///
///
///
public int Id { get; set; }
///
/// 商户
///
public string mch { get; set; }
///
/// 商户id
///
public string mch_id { get; set; }
///
///
///
public string mch_no { get; set; }
///
///
///
public string trade_no { get; set; }
///
///
///
public string out_trade_no { get; set; }
///
///
///
public DateTime trade_datetime { get; set; }
///
///
///
public decimal trade_amount { get; set; }
///
///
///
public decimal fee_amount { get; set; }
///
///
///
public string trade_type { get; set; }
///
///
///
public string out_mch { get; set; }
///
///
///
public string payer_name { get; set; }
///
///
///
public string payer_id { get; set; }
///
///
///
public string out_mchid { get; set; }
///
///
///
public string trade_info { get; set; }
public string refund_info { get; set; }
///
///
///
public string main_trade_no { get; set; }
///
///
///
public string creat_id { get; set; }
///
///
/// 默认值: CURRENT_TIMESTAMP(4)
///
public DateTime? creat_datetime { get; set; }
///
///
/// 默认值: CURRENT_TIMESTAMP(4)
///
public DateTime? last_modify_time { get; set; }
}
}