mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 01:00:51 +08:00
20 lines
541 B
C#
20 lines
541 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.Common.Enum;
|
|
using Yi.Framework.Model.Base;
|
|
|
|
namespace Yi.Framework.DtoModel.ERP.Warehouse
|
|
{
|
|
public class WarehouseCreateUpdateInput : EntityDto<long>
|
|
{
|
|
public string Code { get; set; }=string.Empty;
|
|
public string Name { get; set; }=string.Empty ;
|
|
public string? Remarks { get; set; }
|
|
public StateEnum State { get; set; } = StateEnum.Normal;
|
|
}
|
|
}
|