12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- using Ant.Core.SqlServer.BaseEntities;
- using Central.Control.WebApi.Enum;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.DbEntity
- {
-
-
-
- public class YW_PayCall : SoftBaseEntity
- {
-
-
-
- [Key]
- [MaxLength(50)]
- public string Id { set; get; } = string.Empty;
-
-
-
- [MaxLength(50)]
- [Required(AllowEmptyStrings = true)]
- public string OrderId { set; get; } = string.Empty;
-
-
-
- public PayStatusEnum PayStatus { set; get; } = PayStatusEnum.UnPay;
-
-
-
- [MaxLength(100)]
- [Required(AllowEmptyStrings = true)]
- public string PaySerialId { set; get; } = string.Empty;
-
-
-
- public PayWayEnum PayWay { set; get; } = PayWayEnum.UnKnow;
-
-
-
- public string PayResponse { set; get; } = string.Empty;
-
-
-
- [MaxLength(100)]
- [Required(AllowEmptyStrings = true)]
- public string BuyerId { set; get; } = string.Empty;
-
-
-
- [MaxLength(100)]
- [Required(AllowEmptyStrings = true)]
- public string BuyAccount { set; get; } = string.Empty;
-
-
-
- [MaxLength(100)]
- [Required(AllowEmptyStrings = true)]
- public string SellerId { set; get; } = string.Empty;
-
-
-
- [MaxLength(100)]
- [Required(AllowEmptyStrings = true)]
- public string SellAccount { set; get; } = string.Empty;
-
-
-
- public decimal PayAmount { set; get; }
-
-
-
- public DateTime PayTime { set; get; } = DateTime.Now;
- }
- }
|