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; }
|
|
}
|
}
|