23 lines
530 B
C#
23 lines
530 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("Sponsor")]
|
|
public partial class Sponsor : BaseFullAuditEntity
|
|
{
|
|
#region µ¼º½ÊôÐÔ
|
|
|
|
#endregion
|
|
public string SponsorName { get; set; } = String.Empty;
|
|
public string SponsorNameCN { get; set; } = String.Empty;
|
|
|
|
public string SponsorCode { get; set; } = String.Empty;
|
|
|
|
public bool IsTrialLevel { get; set; }
|
|
|
|
|
|
public Guid? TrialId { get; set; }
|
|
}
|
|
}
|