SACenter/SA.Entity/zxdcrm_audit_Models/WxSzzyorderrefund.cs

156 lines
4.9 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace SA.Entity.zxdcrm_audit_Models
{
/// <summary>
/// 退款记录表
///</summary>
[SugarTable("wx_szzyorderrefund")]
public class wx_szzyorderrefund
{
/// <summary>
///
///</summary>
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true )]
public int id { get; set; }
/// <summary>
///
///</summary>
[SugarColumn(ColumnName="orderid" )]
public int orderid { get; set; }
/// <summary>
/// 退款金额
///</summary>
[SugarColumn(ColumnName="refundprice" )]
public decimal refundprice { get; set; }
/// <summary>
/// 退款账号
///</summary>
[SugarColumn(ColumnName="account" )]
public string account { get; set; } ="";
/// <summary>
/// 退款人姓名
///</summary>
[SugarColumn(ColumnName="username" )]
public string username { get; set; } ="";
/// <summary>
/// 退款类型
///</summary>
[SugarColumn(ColumnName="refundtype" )]
public int refundtype { get; set; }
/// <summary>
/// 退款类型名称
///</summary>
[SugarColumn(ColumnName="refundtypename" )]
public string refundtypename { get; set; } ="";
/// <summary>
/// 退款时间
///</summary>
[SugarColumn(ColumnName="refunddate" )]
public DateTime? refunddate { get; set; }
/// <summary>
/// 备注
///</summary>
[SugarColumn(ColumnName="remark" )]
public string remark { get; set; } ="";
/// <summary>
/// 附件
///</summary>
[SugarColumn(ColumnName="att" )]
public string att { get; set; } ="";
/// <summary>
/// 审核状态 1通过0未通过
/// 默认值: 0
///</summary>
[SugarColumn(ColumnName="auditstatus" )]
public int auditstatus { get; set; }
/// <summary>
/// 审核人
///</summary>
[SugarColumn(ColumnName="auditor" )]
public int? auditor { get; set; }
/// <summary>
/// 审核人姓名
///</summary>
[SugarColumn(ColumnName="auditorname" )]
public string auditorname { get; set; } ="";
/// <summary>
/// 审核时间
///</summary>
[SugarColumn(ColumnName="audittime" )]
public DateTime? audittime { get; set; }
/// <summary>
///
///</summary>
[SugarColumn(ColumnName="ctime" )]
public DateTime ctime { get; set; }
/// <summary>
///
///</summary>
[SugarColumn(ColumnName="att2" )]
public string att2 { get; set; } ="";
/// <summary>
/// 营业部编码
///</summary>
[SugarColumn(ColumnName="companycode" )]
public string companycode { get; set; } ="";
/// <summary>
/// 渠道
///</summary>
[SugarColumn(ColumnName="channel" )]
public int? channel { get; set; }
/// <summary>
///
/// 默认值: 0
///</summary>
[SugarColumn(ColumnName="isdelete" )]
public int isdelete { get; set; }
/// <summary>
/// 是否多付费
/// 默认值: 0
///</summary>
[SugarColumn(ColumnName="ismorepay" )]
public int? ismorepay { get; set; }
/// <summary>
/// 提交人
///</summary>
[SugarColumn(ColumnName="creator" )]
public int? creator { get; set; }
/// <summary>
/// 提交人姓名
///</summary>
[SugarColumn(ColumnName="creatorname" )]
public string creatorname { get; set; } ="";
/// <summary>
/// 1需要实际退款 0退回可用余额不需要实际退款
/// 默认值: 1
///</summary>
[SugarColumn(ColumnName="isacturalrefund" )]
public int? isacturalrefund { get; set; }
/// <summary>
/// 1老数据 0新的退款数据
/// 默认值: 0
///</summary>
[SugarColumn(ColumnName="isold" )]
public int? isold { get; set; }
/// <summary>
///
///</summary>
[SugarColumn(ColumnName="resid" )]
public string resid { get; set; } ="";
/// <summary>
///
/// 默认值: CURRENT_TIMESTAMP(4)
///</summary>
[SugarColumn(ColumnName="last_modify_time" )]
public DateTime last_modify_time { get; set; }
/// <summary>
/// 部门编码
///</summary>
[SugarColumn(ColumnName="deptcode" )]
public string deptcode { get; set; } ="";
}
}