bklLiudl
2025-04-02 1bbbbc8bb49411b544626996a1370788142300e0
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Model.ModelDto.BllAsnDto
{
    public class ProcurePlanNoticeDto
    {
        public int Id { get; set; }
 
        /// <summary>
        /// Desc:状态
        /// Default:0
        /// Nullable:True
        /// </summary>           
        public string Status { get; set; }
 
        /// <summary>
        /// 上游系统单号
        /// </summary>
        public string OrderCode { get; set; }
 
        /// <summary>
        /// 状态变更时间
        /// </summary>
        public DateTime? CompleteTime { get; set; }
 
        public DateTime CreateTime { get; set; }
 
        public string CreateUserName { get; set; }
 
        public string UpdateTime { get; set; }
 
        public string UpdateUserName { get; set; }
    }
}