using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// ///线索信息其他人员中间表 /// [SugarTable("mi_violationusers")] public partial class MiViolationUsers { public MiViolationUsers(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string Id {get;set;} /// /// Desc:线索id /// Default: /// Nullable:True /// public string ViolationReportId {get;set;} /// /// Desc:姓名 /// Default: /// Nullable:True /// public string Name {get;set;} /// /// Desc:联系方式 /// Default: /// Nullable:True /// public string Phone {get;set;} /// /// Desc:照片 /// Default: /// Nullable:True /// public string Image {get;set;} /// /// Desc:与本案关系 /// Default: /// Nullable:True /// public string RelationShip {get;set;} /// /// 导航属性 /// [Navigate(NavigateType.OneToMany, nameof(MiOtherpersonImage.PersonId))] public List MiOtherpersonImages { get; set; } } }