WinFormTools/WinformGeneralDeveloperFrame/Entity/stockInfo.cs

24 lines
613 B
C#
Raw Normal View History

2021-04-21 13:30:43 +08:00
using WinformGeneralDeveloperFrame.Commons;
namespace ERP.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-04-22 14:18:45 +08:00
[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;}
2021-04-21 13:30:43 +08:00
}
}