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

36 lines
742 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Dncms
{
[Table("DeptmentCampainId")]
public class DeptmentCampainId
{
[Key]
public int Id { get; set; }
public int StartCampainId { get; set; }
public int EndCampainId { get; set; }
public int DeptId { get; set; }
public int Status { get; set; }
public string? Appid { get; set; }
public string? Memo { get; set; }
public int? PlatformId { get; set; }
public int? BusinessId { get; set; }
public string? Name { get; set; }
public Deptment? Deptment { get; set; }
}
}