2026-06-16 19:17:16 +06:00
|
|
|
|
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
|
|
|
|
|
|
|
|
|
|
|
|
public class EmployeeIntegrationResponse : ResponseBase
|
|
|
|
|
|
{
|
2026-06-18 18:19:43 +06:00
|
|
|
|
public int EmployeeId { get; set; }
|
2026-06-16 19:17:16 +06:00
|
|
|
|
public string EmployeeVendorCode { get; set; }
|
|
|
|
|
|
public string EmployeeVendorName { get; set; }
|
2026-06-18 18:19:43 +06:00
|
|
|
|
public string Designation { get; set; }
|
2026-06-16 19:17:16 +06:00
|
|
|
|
public string DesignationDescription { get; set; }
|
|
|
|
|
|
public string MobileNo { get; set; }
|
2026-06-18 18:19:43 +06:00
|
|
|
|
public string Mail { get; set; }
|
|
|
|
|
|
public string CompanyCode { get; set; }
|
|
|
|
|
|
public string CompanyName { get; set; }
|
|
|
|
|
|
public string SalesOrg { get; set; }
|
2026-06-16 19:17:16 +06:00
|
|
|
|
public string SalesOrgDescription { get; set; }
|
2026-06-18 18:19:43 +06:00
|
|
|
|
public string DistChannel { get; set; }
|
2026-06-16 19:17:16 +06:00
|
|
|
|
public string DistChannelDescription { get; set; }
|
2026-06-18 18:19:43 +06:00
|
|
|
|
public string Division { get; set; }
|
2026-06-16 19:17:16 +06:00
|
|
|
|
public string DivisionDescription { get; set; }
|
2026-06-18 18:19:43 +06:00
|
|
|
|
public string RegionAreaCode { get; set; }
|
|
|
|
|
|
public string RegionAreaDescription { get; set; }
|
|
|
|
|
|
public string AreaAVSalesUnitCode { get; set; }
|
|
|
|
|
|
public string AreaAVSalesUnitDescription { get; set; }
|
|
|
|
|
|
public string Territory { get; set; }
|
2026-06-16 19:17:16 +06:00
|
|
|
|
public string TerritoryDescription { get; set; }
|
2026-06-18 18:19:43 +06:00
|
|
|
|
public string Plant { get; set; }
|
2026-06-16 19:17:16 +06:00
|
|
|
|
public string PlantDescription { get; set; }
|
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
public string StatusDescription { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class EmployeeIntegrationReqResponse : ResponseBase
|
|
|
|
|
|
{
|
2026-06-17 13:51:19 +06:00
|
|
|
|
public string EmployeeVendorCode { get; set; }
|
2026-06-18 18:19:43 +06:00
|
|
|
|
public string CompanyCode { get; set; }
|
2026-06-17 13:51:19 +06:00
|
|
|
|
public bool IsUpdated { get; set; }
|
2026-06-16 19:17:16 +06:00
|
|
|
|
|
|
|
|
|
|
}
|