Пример #1
0
 public VoucherDetail AsMinor(InterestBase my, double? fund = null)
     => new VoucherDetail
         {
             Currency = Currency,
             Title = 6603,
             SubTitle = my.MinorSubTitle(),
             Content = "贷款利息",
             Fund = fund
         };
Пример #2
0
 public VoucherDetail AsInterest(InterestBase my, double? fund = null)
     => new VoucherDetail
         {
             Currency = Currency,
             Title = Title,
             Content = Content,
             Remark = Remark + "-利息",
             Fund = fund
         };
Пример #3
0
 public string QueryCapital(InterestBase my) =>
     $"@{Currency} T{Title.AsTitle()} {Content.Quotation('\'')} {Remark.Quotation('"')}";
Пример #4
0
 public string QueryInterest(InterestBase my) =>
     $"@{Currency} T{Title.AsTitle()} {Content.Quotation('\'')} {(Remark + "-利息").Quotation('"')}";
Пример #5
0
 public string QueryMajor(InterestBase my) =>
     $"(@{Currency} T{Title.AsTitle()} {Content.Quotation('\'')})*({Remark.Quotation('"')}+{(Remark + "-利息").Quotation('"')})";