using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { [Table("UPDEV.WX_SZZYPREPAYMENT")] public partial class WX_SZZYPREPAYMENT { [Key] public decimal PKID { get; set; } [StringLength(50)] public string PREPAYMENTID { get; set; } [StringLength(50)] public string USERID { get; set; } [StringLength(20)] public string RESID { get; set; } [StringLength(20)] public string REALNAME { get; set; } [StringLength(50)] public string TOBANKNAME { get; set; } public DateTime? REMITTIME { get; set; } public decimal? AMOUNT { get; set; } public decimal? SZZYORDERID { get; set; } public decimal? INNERUSERID { get; set; } public DateTime? CTIME { get; set; } public decimal? SALEREID { get; set; } public decimal? SALERUSERID { get; set; } } }