| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | | namespace Bro.M071.Model.Model |
| | | { |
| | |
| | | /// </summary> |
| | | [StringLength(64)] |
| | | public string MeasurementResult { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 产品编码 |
| | | /// </summary> |
| | | [NotMapped] |
| | | public string ProductionCode { get; set; } |
| | | [NotMapped] |
| | | public string ProductionBarcode { get; set; } |
| | | } |
| | | |
| | | public class MeasurementUnitResultRequest : BaseRequest |
| | |
| | | /// 检测结果 ok ng |
| | | /// </summary> |
| | | public string MeasurementResult { get; set; } |
| | | } |
| | | |
| | | public class MeasurementUnitResult_DTO : MeasurementUnitResult |
| | | { |
| | | //产品相关 |
| | | /// <summary> |
| | | /// 产品编码 |
| | | /// </summary> |
| | | public string ProductionCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 产品条码 |
| | | /// </summary> |
| | | public string ProductionBarcode { get; set; } |
| | | |
| | | |
| | | } |
| | | |
| | | public class ProductionMeasurementUnitResultAndKeyUnitDataSet |