You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.5 KiB
C#

using FreeSql.DatabaseModel;using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Newtonsoft.Json;
using FreeSql.DataAnnotations;
namespace djy.Model {
[JsonObject(MemberSerialization.OptIn), Table(Name = "EIP_StockUp", DisableSyncStructure = true)]
public partial class EIPStockUp {
[JsonProperty, Column(DbType = "varchar(100)", IsPrimary = true, IsNullable = false)]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "char(1)")]
public string BSSTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty]
public DateTime? ENTERDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string ENTEROPERATER { get; set; }
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
public string EXPORTNO { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(500)")]
public string GOODSNAMETT { get; set; }
[JsonProperty, Column(DbType = "char(1)")]
public string IsRecved { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(500)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string SALECONTRACT { get; set; }
[JsonProperty]
public DateTime? STOCKUPDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string STOCKUPNO { get; set; }
}
}