WinFormTools/WinformGeneralDeveloperFrame/Entity/stockInfo.cs

28 lines
677 B
C#
Raw Normal View History

2021-04-21 13:30:43 +08:00
using WinformGeneralDeveloperFrame.Commons;
2021-05-29 14:11:44 +08:00
namespace MES.Entity
2021-04-21 13:30:43 +08:00
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("stock")]
public partial class stockInfo
{
2021-05-29 14:11:44 +08:00
///id
2021-04-22 14:18:45 +08:00
[ModelBindControl("txtid")]
public int id{set;get;}
2021-05-29 14:11:44 +08:00
///仓库名称
[ModelBindControl("txtname")]
public string name{set;get;}
2021-05-29 14:11:44 +08:00
///仓库地址
[ModelBindControl("txtaddress")]
public string address{set;get;}
2021-05-29 14:11:44 +08:00
///备注
[ModelBindControl("txtremark")]
public string remark{set;get;}
2021-04-21 13:30:43 +08:00
}
}