ComplianceServer/oldcode/Model/Entity/WX_SETPERCENTLOG.cs

37 lines
866 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
/// <summary>
/// 微信资源分配比率操作日志表
/// </summary>
[Table("UPDEV.WX_SETPERCENTLOG")]
public partial class WX_SETPERCENTLOG
{
/// <summary>
/// 主键ID
/// </summary>
[Key]
public decimal PKID { get; set; }
/// <summary>
/// 操作人
/// </summary>
[StringLength(50)]
public string OPUSER { get; set; }
/// <summary>
/// 操作时间
/// </summary>
public DateTime OPTIME { get; set; }
/// <summary>
/// 操作明细存储json格式
/// </summary>
[StringLength(2000)]
public string OPDETAIL { get; set; }
}
}