using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity { [Table("SYS_USER_PROTOCOL")] public class SysUserProtocol { public int Id { get; set; } public string? Resid { get; set; } public string? Username { get; set; } public string? Userid { get; set; } /// /// 1 和解协议 2 撤销投诉协议 /// public int Protocoltype { get; set; } /// /// 和解协议 金额 /// public decimal? Price { get; set; } public DateTime? Ctime { get; set; } /// /// 0未签订 1签订待确认 9已确认 /// public int Status { get; set; } public string? Note { get; set; } } }