Zxd.Core/code/Zxd.Entity/Dncms/ResCutomerPassTime.cs

43 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Dncms
{
[Table("res_passtimeinto")]
public class ResCutomerPassTime
{
[Key]
public int? PKID { get; set; }
public string? RESID { get; set; }
public string? UMID { get; set; }
/// <summary>
/// 事业部id
/// </summary>
public int? Deptid { get; set; }
public string? DeptName { get; set; }
/// <summary>
/// 群id
/// </summary>
public int? GroupId { get; set; }
public DateTime? Ctime { get; set; }
public DateTime? orderpasstime { get; set; }
public DateTime? protecttime { get; set; }
public DateTime? utime { get; set; }
public decimal? arrivalpay { get; set; }
public decimal? refundpay { get; set; }
public decimal? inpay { get; set; }
public decimal? balancepay { get; set; }
public DateTime? firstPayTime { get; set; }
}
}