username@email.com
3 天以前 d4431c7e89865a506af8662244004d0baa7ed609
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; }
        
    }
}