You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|