Zxd.Core/code/Zxd.Entity/CompanyBaseConf/DepartmentCrmconf.cs

31 lines
634 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.CompanyBaseConf
{
[Table("department_crmconf")]
public class DepartmentCrmconf
{
[Key]
[Column("department_id")]
public int DepartmentId { get; set; }
public string? Title { get; set; }
public string? Appid { get; set; }
public string? CompanyCode { get; set; }
public int? Saledeptid { get; set; }
[Column("is_dept")]
public bool? IsDept { get; set; }
public int? SortNo { get; set; }
}
}