| | |
| | | |
| | | using System; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | | namespace Bro.M071.Model.Model |
| | | { |
| | |
| | | /// </summary> |
| | | [StringLength(64)] |
| | | public string ItemValue { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 产品编码 |
| | | /// </summary> |
| | | [NotMapped] |
| | | public string ProductionCode { get; set; } |
| | | [NotMapped] |
| | | public string ProductionBarcode { get; set; } |
| | | } |
| | | |
| | | public class KeyUnitDataRequest : BaseRequest |
| | | { |
| | | } |
| | | |
| | | public class KeyUnitData_DTO |
| | | { |
| | | public string Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 产品测量记录Id |
| | | /// </summary> |
| | | public string ProductionMeasurementRecordsId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 键单元 |
| | | /// </summary> |
| | | public string Key { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 检测项 |
| | | /// </summary> |
| | | public string MeasurementItem { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 该键 检测项 的值 |
| | | /// </summary> |
| | | public string ItemValue { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 产品编码 |
| | | /// </summary> |
| | | public string ProductionCode { get; set; } |
| | | |
| | | public string ProductionBarcode { get; set; } |
| | | } |
| | | |
| | | } |