namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class App_ProductApply
|
{
|
[Key]
|
public int ProductApply_Id { get; set; }
|
|
[StringLength(50)]
|
public string ProductCode { get; set; }
|
|
[StringLength(50)]
|
public string ProductName { get; set; }
|
|
[StringLength(50)]
|
public string ProductModel { get; set; }
|
|
[StringLength(50)]
|
public string OrignPlace { get; set; }
|
|
[StringLength(50)]
|
public string SmallUnit { get; set; }
|
|
public string Images { get; set; }
|
|
[StringLength(200)]
|
public string Describe { get; set; }
|
|
public int? Consignor_Id { get; set; }
|
|
[StringLength(200)]
|
public string ConsignorCode { get; set; }
|
|
[StringLength(50)]
|
public string ConsignorName { get; set; }
|
|
public int? Typeid { get; set; }
|
|
[StringLength(50)]
|
public string TypeName { get; set; }
|
|
[StringLength(200)]
|
public string TypeCode { get; set; }
|
|
[StringLength(50)]
|
public string BrandName { get; set; }
|
|
[StringLength(200)]
|
public string BrandCode { get; set; }
|
|
public int? Brandid { get; set; }
|
|
public int? ProviderShortid { get; set; }
|
|
[StringLength(50)]
|
public string ProviderShortName { get; set; }
|
|
[StringLength(200)]
|
public string ProviderShortcode { get; set; }
|
|
public byte? Auditing { get; set; }
|
|
[StringLength(50)]
|
public string Auditor { get; set; }
|
|
public DateTime? AuditDate { get; set; }
|
|
[StringLength(200)]
|
public string Remark { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modify { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
public int? PlatUser_Id { get; set; }
|
|
public int? UserProduct_Id { get; set; }
|
|
[StringLength(50)]
|
public string DayPrice { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|