using System.ComponentModel.DataAnnotations.Schema; namespace YLErp.DBModels { /// /// 接口审批记录 /// [Table("ApprovalResult")] public class ApprovalResult : DBModelWithOperator { /// /// 审批状态 /// 1:交易审批; /// 2:客户审批; /// 3:资金审批; /// public int type { get; set; } /// /// 原始编号 /// public string code { get; set; } /// /// 审批状态 /// true:通过; /// false:拒绝; /// public bool status { get; set; } /// /// 备注信息 /// public string remark { get; set; } /// /// 链接编号 /// public string LinkCode { get; set; } /// /// 关联失败信息 /// public string errorMsg { get; set; } } }