添加项目文件。

This commit is contained in:
jl
2023-01-13 15:30:20 +08:00
parent 40ed216831
commit bf208bde56
834 changed files with 470902 additions and 0 deletions

28
Epost.Model/MatchModel.cs Normal file
View File

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class MatchModel:Base
{
private string _Matchid = string.Empty;
private string _Channel = string.Empty;
private string _oprationstate = string.Empty;
private string _OrState = string.Empty;
private string _KeyName = string.Empty;
private string _Shopid = string.Empty;
private string _Orderid = string.Empty;
public string Matchid { get => _Matchid; set => _Matchid = value; }
public string Channel { get => _Channel; set => _Channel = value; }
public string Oprationstate { get => _oprationstate; set => _oprationstate = value; }
public string OrState { get => _OrState; set => _OrState = value; }
public string KeyName { get => _KeyName; set => _KeyName = value; }
public string Shopid { get => _Shopid; set => _Shopid = value; }
public string Orderid { get => _Orderid; set => _Orderid = value; }
}
}