20 lines
471 B
C#
20 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.SSO
|
|
{
|
|
[Table("department_crmconf")]
|
|
public class DepartmentCrmConf
|
|
{
|
|
[Key]
|
|
public int department_id { get; set; }
|
|
|
|
public string? title { get; set; }
|
|
public string? CompanyCode { get; set; }
|
|
public string? AppId { get; set; }
|
|
public int? SaleDeptId { get; set; }
|
|
}
|
|
} |