21 lines
574 B
C#
21 lines
574 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.CompanyBaseConf
|
|
{
|
|
[Table("application_department")]
|
|
public class ApplicationDepartment
|
|
{
|
|
public int id { get; set; }
|
|
public int application_id { get; set; }
|
|
public int department_id { get; set; }
|
|
public int is_proression { get; set; }
|
|
public int is_deleted { get;set; }
|
|
public DateTime? create_time { get; set; }
|
|
public DateTime? update_time { get; set; }
|
|
}
|
|
}
|