using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Abp.Domain.Entities.Auditing;
using ContractService.Authorization.Users;
using ContractService.Configuration;
namespace ContractService.LegalContract
{
///
/// 合同信息
///
[Table("Ls_LegalContractContents")]
public class LegalContractContentInfo : CreationAuditedEntity
{
///
/// 编号(合同,补充合同)
///
[MaxLength(IwbConsts.PrimaryKey)]
public string No { get; set; }
///
/// 内容信息
///
public string ContentInfo { get; set; }
[MaxLength(1000)]
public string Remark { get; set; }
}
}