18 lines
403 B
C#
18 lines
403 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 AutoLabel:Entity<int>
|
|
{
|
|
public DateOnly Date { get; set; }
|
|
public int Type { get; set; }
|
|
public int Sort { get; set; }
|
|
public string Mark { get; set; }
|
|
}
|
|
}
|