Compare commits
No commits in common. "9c60c69b284c4f7f250f0f2ad176f29dba86a572" and "fcd7866d0984679075a2e77d248d89e7f51c2360" have entirely different histories.
9c60c69b28
...
fcd7866d09
|
|
@ -1,14 +0,0 @@
|
||||||
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,10 +43,9 @@ 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";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//public static Guid[] DevAdminIds = new Guid[2] { Guid.Parse("dcf451d2-cc4c-4ac2-8c1f-da00041be1fd"), Guid.Parse("4cbaed43-2465-4d99-84f1-c8bc6b7025f7") };
|
//public static Guid[] DevAdminIds = new Guid[2] { Guid.Parse("dcf451d2-cc4c-4ac2-8c1f-da00041be1fd"), Guid.Parse("4cbaed43-2465-4d99-84f1-c8bc6b7025f7") };
|
||||||
//public static Guid[] SysAdmins = new Guid[3]
|
//public static Guid[] SysAdmins = new Guid[3]
|
||||||
//{
|
//{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue