WinFormTools/WinformGeneralDeveloperFrame/Entity/stockInfo.cs

24 lines
613 B
C#

using WinformGeneralDeveloperFrame.Commons;
namespace ERP.Entity
{
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
{
[ModelBindControl("txtid")]
public int id{set;get;}
[ModelBindControl("txtname")]
public string name{set;get;}
[ModelBindControl("txtaddress")]
public string address{set;get;}
[ModelBindControl("txtremark")]
public string remark{set;get;}
}
}