32 lines
884 B
C#
32 lines
884 B
C#
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; }
|
|
/// <summary>
|
|
/// 1 和解协议 2 撤销投诉协议
|
|
/// </summary>
|
|
public int Protocoltype { get; set; }
|
|
/// <summary>
|
|
/// 和解协议 金额
|
|
/// </summary>
|
|
public decimal? Price { get; set; }
|
|
public DateTime? Ctime { get; set; }
|
|
/// <summary>
|
|
/// 0未签订 1签订待确认 9已确认
|
|
/// </summary>
|
|
public int Status { get; set; }
|
|
public string? Note { get; set; }
|
|
}
|
|
}
|