11
pulg
2025-06-05 28bea7128b8c24a6a664e880f1425e1fa24b9b5f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
 
namespace HH.WCS.SJML.Dto
{
    public class UpdateItemStateDto
    {
        /// <summary>
        /// 物料品质
        /// </summary>
        public string ItemState { get; set; }
        /// <summary>
        /// 更新时间
        /// </summary>
        public DateTime? UpdateTime { get; set; }
        /// <summary>
        /// 批次号
        /// </summary>
        public string flot { get; set; }
 
        public string UseName { get; set; }
    }
}