32 lines
755 B
32 lines
755 B
3 years ago
|
using FreeSql.DataAnnotations;
|
||
|
using System;
|
||
|
|
||
|
namespace BBWY.Server.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(Name = "storehouse", DisableSyncStructure = true)]
|
||
|
public partial class Storehouse
|
||
|
{
|
||
|
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
[Column(StringLength = 50)]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
[Column(MapType = typeof(int))]
|
||
|
public Enums.Platform Platform { get; set; }
|
||
|
|
||
|
[Column(MapType = typeof(int))]
|
||
|
public Enums.StockStatus Status { get; set; }
|
||
|
|
||
|
[Column(MapType = typeof(int))]
|
||
|
public Enums.StockType Type { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|