11 changed files with 95 additions and 20 deletions
@ -0,0 +1,16 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Win_in.Sfs.Shared.Application.Contracts.ExportAndImport; |
|||
|
|||
/// <summary>
|
|||
/// 导入模板是否是 详情 中的属性
|
|||
/// </summary>
|
|||
[AttributeUsage(AttributeTargets.Property)] |
|||
public class ImportDetailAttribute:Attribute |
|||
{ |
|||
public bool IsDetail { get; set; } = true; |
|||
} |
@ -0,0 +1,12 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Win_in.Sfs.Wms.Store.Project; |
|||
public class ProjectStoreConsts |
|||
{ |
|||
public const string RootPath = "api/wms/store/fuweidongyang/"; |
|||
public const string CachePrefix = "Store"; |
|||
} |
Loading…
Reference in new issue