21 lines
528 B
C#
21 lines
528 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Syc.Basic.Web.WMS.Entitys
|
|
{
|
|
public class Values:Entity<int>
|
|
{
|
|
public string Key1 { get; set; }
|
|
public string Key2 { get; set; }
|
|
public string Value { get; set; }
|
|
public int Type { get; set; }
|
|
public string TypeData { get; set; }
|
|
public int IsDelete { get; set; }
|
|
public int IfUse { get; set; }
|
|
}
|
|
}
|