2013-02-12 13:25:10 +00:00
|
|
|
|
using Tanshu.Accounts.Contracts;
|
2014-10-12 09:41:45 +00:00
|
|
|
|
using NHibernate.Mapping.ByCode.Conformist;
|
|
|
|
|
using NHibernate.Mapping.ByCode;
|
|
|
|
|
using System;
|
2011-03-11 18:49:48 +00:00
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.Entities
|
|
|
|
|
{
|
|
|
|
|
public class VoucherSettlement
|
|
|
|
|
{
|
2014-10-12 09:41:45 +00:00
|
|
|
|
public virtual Guid VoucherSettlementID { get; set; }
|
2011-03-11 18:49:48 +00:00
|
|
|
|
public virtual Voucher Voucher { get; set; }
|
|
|
|
|
public virtual SettleOption Settled { get; set; }
|
|
|
|
|
public virtual decimal Amount { get; set; }
|
|
|
|
|
}
|
2014-10-12 09:41:45 +00:00
|
|
|
|
public class VoucherSettlementMap : ClassMapping<VoucherSettlement>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public VoucherSettlementMap()
|
|
|
|
|
{
|
|
|
|
|
Table("VoucherSettlements");
|
|
|
|
|
Schema("dbo");
|
|
|
|
|
Lazy(true);
|
|
|
|
|
Id(x => x.VoucherSettlementID, map => map.Generator(Generators.GuidComb));
|
|
|
|
|
Property(x => x.Settled, map => map.NotNullable(true));
|
|
|
|
|
Property(x => x.Amount, map => map.NotNullable(true));
|
|
|
|
|
ManyToOne(x => x.Voucher, map =>
|
|
|
|
|
{
|
|
|
|
|
map.Column("VoucherID");
|
|
|
|
|
map.NotNullable(true);
|
|
|
|
|
map.Cascade(Cascade.None);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-11 18:49:48 +00:00
|
|
|
|
}
|