wwservice/model/ww_addway.cs

20 lines
392 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace model
{
[Table("ww_addway")]
public class ww_addway
{
[Key]
public int id { get; set; }
public string way { get; set; }
}
}