35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("reward_payinfo")]
|
|
public class Reward_PayInfo
|
|
{
|
|
public Reward_PayInfo() { }
|
|
|
|
|
|
[Key]
|
|
public int id { get; set; }
|
|
|
|
public int paytype { get; set; }
|
|
public string paytypename { get; set; }
|
|
public DateTime paydate { get; set; }
|
|
public decimal payprice { get; set; }
|
|
public string payname { get; set; }
|
|
public string remark { get; set; }
|
|
public int auditstatus { get; set; }
|
|
public int? auditor { get; set; }
|
|
public string auditorname { get; set; }
|
|
public DateTime? audittime { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public string payno { get; set; }
|
|
public string companycode { get; set; }
|
|
public int? channel { get; set; }
|
|
public int isdelete { get; set; }
|
|
|
|
public string outorderno { get; set; }
|
|
}
|
|
}
|