Files
zszq-trs/YLErpDAL/Model/RptContractNoGenRule.cs
2024-05-09 14:06:26 +08:00

39 lines
941 B
C#

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.Model
{
[Table("rpt_contract_no_gen_rule")]
public class rpt_contract_no_gen_rule
{
public static string LogClass = "合同编号规则";
/// <summary>
///
/// </summary>
[Key]
public int id { get; set; }
/// <summary>
/// 合同编号规则代码
/// </summary>
[DisplayName("合同编号规则代码")]
public string RuleId { get; set; } = "";
/// <summary>
/// 合同编号自增计数器
/// </summary>
[DisplayName("合同编号自增计数器")]
public int? SeqNum { get; set; }
/// <summary>
/// 操作时间
/// </summary>
[DisplayName("操作时间")]
public DateTime? OptDate { get; set; }
}
}