12345678910111213141516171819202122232425262728293031323334353637 |
- 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.Models
- {
-
-
-
- public class YW_ORDER : SoftBaseEntity
- {
-
-
-
- [Key]
- [MaxLength(50)]
- public string Id { set; get; } = string.Empty;
-
-
-
- [MaxLength(50)]
- [Required(AllowEmptyStrings = true)]
- public string DeviceId { set; get; } = string.Empty;
-
-
-
- public decimal Price { set; get; }
-
-
-
- public PayStatusEnum PayStatus { set; get; } = PayStatusEnum.UnPay;
- }
- }
|