19 lines
314 B
19 lines
314 B
3 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace BBWY.Server.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(Name = "jdyundingapikey", DisableSyncStructure = true)]
|
||
|
public partial class JDYunDingAPIKey
|
||
|
{
|
||
|
|
||
|
[Column(IsPrimary = true)]
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
[Column(StringLength = 50)]
|
||
|
public string YunDingKey { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|