2026-06-18 18:19:43 +06:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
|
|
|
|
|
|
|
2026-06-23 17:34:45 +06:00
|
|
|
|
public class IntegrationMaterialResponse : ResponseBase
|
2026-06-18 18:19:43 +06:00
|
|
|
|
{
|
|
|
|
|
|
public int MeterialId { get; set; }
|
|
|
|
|
|
public string MaterialType { get; set; }
|
|
|
|
|
|
public string MaterialTypeDescription { get; set; }
|
|
|
|
|
|
public string MaterialCode { get; set; }
|
|
|
|
|
|
public string MaterialDescription { get; set; }
|
|
|
|
|
|
public string MaterialGroupCode { get; set; }
|
|
|
|
|
|
public string MaterialGroupDescription { get; set; }
|
|
|
|
|
|
public string BaseUnitOfMeasure { get; set; }
|
|
|
|
|
|
public string SalesUnitOfMeasure { get; set; }
|
|
|
|
|
|
public decimal UnitConversionWithBaseUoM { get; set; }
|
|
|
|
|
|
public string PlantCode { get; set; }
|
|
|
|
|
|
public string PlantDescription { get; set; }
|
|
|
|
|
|
public string StorageLocationCode { get; set; }
|
|
|
|
|
|
public string StorageLocationDescription { get; set; }
|
|
|
|
|
|
public string SalesOrganization { get; set; }
|
|
|
|
|
|
public string SalesOrganizationDescription { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class MaterialIntegrationReqResponse : ResponseBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public string MaterialCode { get; set; }
|
|
|
|
|
|
public bool IsUpdated { get; set; }
|
|
|
|
|
|
}
|