You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
830 B
35 lines
830 B
namespace Warehouse.Models
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("wh.tstock")]
|
|
public partial class tstock
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Name { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string Area { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string Type { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string Person { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Phone { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Address { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|
|
|