pan
2025-11-03 72e53dc9a4e6d63ea958f6ff5cbe01ca588dbdab
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
using MailKit.Search;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.Basic
{
 
    public class ResponseModel
    {
        public int code { get; set; } = 200;
 
        public string message { get; set; }
 
        public object data { get; set; }
        public DateTime? responseTime { get; set; } = DateTime.Now;
    }
    public class MaterielToMesDTO
    {
        public string reqCode { get; set; }
        public string reqTime { get; set; }
    
        public string oldmaterialCode { get; set; }
        public string newmaterialCode { get; set; }
        public string unit { get; set; }
        public string factoryArea { get; set; }
        public string qty { get; set; }
        public string supplyCode { get; set; }
        public string warehouseCode { get; set; }
        public string batchNo { get; set; }
        public string materialCode { get; set; }
 
        public int operationType { get; set; }
    }
 
    public class MaterialExpirationDateDTO
    {
        public string reqCode { get; set; }
        public string reqTime { get; set; }
        public string materialCode { get; set; }
        public int validityDays { get; set; }
        public int oneExtensionDays { get; set; }
        public int twoExtensionDays { get; set; }
        public int threeExtensionDays { get; set; }
        public int enable { get; set; }
        public int operationType { get; set; }
 
    }
 
    public class ReCheckDto
    {
        public string reqCode { get; set; }
        public string reqTime { get; set; }
        public string orderNo { get; set; }
        public string materialCode { get; set; }
        public string factoryArea { get; set; }
        public int result { get; set; }
        public string batchNo { get; set; }
        public int inspectionNumber { get; set; }
        public decimal qty { get; set; }
        public string warehouseCode { get; set; }
        public int signSeq { get; set; }
        public string unit { get; set; }
        public int operationType { get; set; }
    }
  
}