48 lines
1005 B
C#
48 lines
1005 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.Dncmsbase
|
|
{
|
|
[Table("Deptment")]
|
|
public class Deptment
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public string? Title { get; set; }
|
|
|
|
public string? Code { get; set; }
|
|
|
|
public string? Url { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
|
|
public int? ExtendType { get; set; }
|
|
|
|
public string? Tel { get; set; }
|
|
|
|
public string? Conptel { get; set; }
|
|
|
|
public string? Viptel { get; set; }
|
|
|
|
public int? CampainId { get; set; }
|
|
|
|
public int? DeleteType { get; set; }
|
|
|
|
public int? FriendTagId { get; set; }
|
|
|
|
public int? ActivityStatus { get; set; }
|
|
|
|
public string? Appid { get; set; }
|
|
|
|
public int? RootId { get; set; }
|
|
|
|
public int? Groupid { get; set; }
|
|
|
|
public virtual DeptmentGroup? DeptmentGroup { get; set; }
|
|
}
|
|
}
|