wwservice/model/ww_corp.cs

23 lines
482 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
namespace model
{
[Table("ww_corp")]
public class ww_corp
{
[Key]
public string corpid { get; set; }
public string corpname { get; set; }
public string khsecret { get; set; }
public string txlsecret { get; set; }
}
}