222
schangxiang@126.com
2025-09-24 68941a04cb2320daa22ba0d5ac79a4447c29998d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
using Furion.TaskScheduler;
using iWare.Wms.Core.Enum;
using iWare.Wms.Core.Util.LowCode.Dto;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
 
namespace iWare.Wms.Application
{
 
    public class QueryWorkPieceLogYieldOutput : ExportYQueryWorkPieceLogYieldOutput
    {
 
        public long Id { get; set; }
 
        /// <summary>
        /// 当前设备
        /// </summary>
        public string EquipmentID { get; set; }
 
 
        [Description("备注")]
        public string MyRemarks { get; set; }
 
        /// <summary>
        /// 日志类型
        /// </summary>
        [Comment("日志类型")]
        public int? PieceLogType { get; set; }
 
        /// <summary>
        /// 日志类型
        /// </summary>
        [Comment("日志类型")]
        [MaxLength(255)]
        public string PieceLogTypeName { get; set; }
 
    }
 
 
    [Description("工件采集日志查询")]
    public class ExportYQueryWorkPieceLogYieldOutput
    {
        ///// <summary>
        ///// 设备名称
        ///// </summary>
        //[Description("当前设备")]
        //public string EquipmentName { get; set; }
 
        /// <summary>
        /// 当前工序
        /// </summary>
        [Description("当前工序")]
        public string WorkingProcedure { get; set; }
 
        /// <summary>
        /// 工件号
        /// </summary>
        [Description("工件号")]
        public string WorkPieceID { get; set; }
 
 
 
        //[Description("备注")]
        //public string Remarks { get; set; }
 
 
 
        [Description("来源")]
        public string DataCapturePointCname { get; set; }
 
 
        [Description("来源代码")]
        public virtual string CreatedUserName { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        [Description("创建时间")]
        public virtual DateTimeOffset? CreatedTime { get; set; }
 
 
 
 
 
    }
 
 
}