Compare commits
2 Commits
fcd7866d09
...
9c60c69b28
| Author | SHA1 | Date |
|---|---|---|
|
|
9c60c69b28 | |
|
|
eba13e7a60 |
|
|
@ -0,0 +1,14 @@
|
||||||
|
using AyCode.Interfaces.EntityComment;
|
||||||
|
using FruitBank.Common.Interfaces;
|
||||||
|
using Mango.Nop.Core.Entities;
|
||||||
|
|
||||||
|
namespace FruitBank.Common.Entities;
|
||||||
|
|
||||||
|
public class CustomerCredit: MgEntityBase, IEntityComment
|
||||||
|
{
|
||||||
|
public int CustomerId { get; set; }
|
||||||
|
public decimal CreditLimit { get; set; }
|
||||||
|
public string? Comment { get; set; }
|
||||||
|
public DateTime CreatedOnUtc { get; set; }
|
||||||
|
public DateTime UpdatedOnUtc { get; set; }
|
||||||
|
}
|
||||||
|
|
@ -43,6 +43,7 @@ public static class FruitBankConstClient
|
||||||
public const string StockTakingDbTableName = "fbStockTaking";
|
public const string StockTakingDbTableName = "fbStockTaking";
|
||||||
public const string StockTakingItemDbTableName = "fbStockTakingItem";
|
public const string StockTakingItemDbTableName = "fbStockTakingItem";
|
||||||
public const string StockTakingItemPalletDbTableName = "fbStockTakingItemPallet";
|
public const string StockTakingItemPalletDbTableName = "fbStockTakingItemPallet";
|
||||||
|
public const string CustomerCreditDbTableName = "fbCustomerCredit";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue