username@email.com
昨天 1537186f437bb5f07269231724772f8de68e8a72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
 
#nullable disable
 
namespace zhengcaioa.Models
{
    public partial class ProcurementComplaintItem
    {
        public Guid Id { get; set; }
        public Guid ComplaintId { get; set; }
        public string ItemDescription { get; set; }
        //1成立  2驳回  3 部分成立 0 其他
        public int HandlingStatus { get; set; }
        public string HandlingResult { get; set; }
 
        public int? Sort { get; set; }
        
    }
}