32 lines
1.2 KiB
C#
32 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Epost.Model
|
|
{
|
|
public class StoreModel:Base
|
|
{
|
|
private int _id =0;
|
|
private string _shopid = string.Empty;
|
|
private string _name = string.Empty;
|
|
private string _location = string.Empty;
|
|
private string _orderway = string.Empty;
|
|
private string _matchid = string.Empty;
|
|
private string _prino = string.Empty;
|
|
private string _batchno = string.Empty;
|
|
private string _fleet = string.Empty;
|
|
|
|
public string shopid { get => _shopid; set => _shopid = value; }
|
|
public string name { get => _name; set => _name = value; }
|
|
public string location { get => _location; set => _location = value; }
|
|
public string orderway { get => _orderway; set => _orderway = value; }
|
|
public string matchid { get => _matchid; set => _matchid = value; }
|
|
public string prino { get => _prino; set => _prino = value; }
|
|
public int id { get => _id; set => _id = value; }
|
|
public string batchno { get => _batchno; set => _batchno = value; }
|
|
public string fleet { get => _fleet; set => _fleet = value; }
|
|
}
|
|
}
|