Zxd.Core/code/Zxd.Entity/Dncms/Deptment.cs

46 lines
1002 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Dncms
{
[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 List<DeptmentCampainId>? DeptmentCampainIds { get; set; }
}
}