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.
84 lines
2.1 KiB
C#
84 lines
2.1 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务邮件表
|
|
/// </summary>
|
|
[SugarTable("task_charges_his")]
|
|
[Description("任务扣费历史记录")]
|
|
public class TaskChargesHisInfo: TaskManageDbEntity
|
|
{
|
|
/// <summary>
|
|
/// 任务主键(父主键)
|
|
/// </summary>
|
|
public string TASK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原余额,扣费前取到的客户金额
|
|
/// </summary>
|
|
public Nullable<decimal> BEFORE_BALANCE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扣费单价
|
|
/// </summary>
|
|
public Nullable<decimal> PRICE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扣费数量
|
|
/// </summary>
|
|
public Nullable<decimal> QTY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合计金额
|
|
/// </summary>
|
|
public Nullable<decimal> TOTAL_AMOUNT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务类型
|
|
/// </summary>
|
|
public string BUSI_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务类型名称
|
|
/// </summary>
|
|
public string BUSI_TYPE_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送类型
|
|
/// </summary>
|
|
public string SEND_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发送类型名称
|
|
/// </summary>
|
|
public string SEND_TYPE_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态 SUCC-成功 NO_PRICE-没有计费标准 CHARGE_FAIL-扣费失败
|
|
/// </summary>
|
|
public string STATUS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态名称 SUCC-成功 NO_PRICE-没有计费标准 CHARGE_FAIL-扣费失败
|
|
/// </summary>
|
|
public string STATUS_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扣费记录号
|
|
/// </summary>
|
|
public string CHARGE_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string REMARK { get; set; }
|
|
}
|
|
}
|