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 = "合同编号规则";
///
///
///
[Key]
public int id { get; set; }
///
/// 合同编号规则代码
///
[DisplayName("合同编号规则代码")]
public string RuleId { get; set; } = "";
///
/// 合同编号自增计数器
///
[DisplayName("合同编号自增计数器")]
public int? SeqNum { get; set; }
///
/// 操作时间
///
[DisplayName("操作时间")]
public DateTime? OptDate { get; set; }
}
}