using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Furion.DatabaseAccessor;
using iWare.Wms.Core;
using Microsoft.EntityFrameworkCore;
namespace iWare.Wms.Application.Entity
{
///
///
///
[Table("LocationView")]
[Comment("")]
public class LocationView : DEntityBase
{
///
/// 输入框
///
[Comment("输入框")][Required][Column(TypeName = "nvarchar(200)")]
public String input_1668660943053 { get; set; }
///
/// 文本框
///
[Comment("文本框")][Required][Column(TypeName = "nvarchar(2000)")]
public String textarea_1668660945922 { get; set; }
}
}