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.
60 lines
1.6 KiB
C#
60 lines
1.6 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 = "OP_SEAE_EDI_FENDANSEND", DisableSyncStructure = true)]
|
|
public partial class OPSEAEEDIFENDANSEND {
|
|
|
|
[JsonProperty, Column(IsPrimary = true, IsIdentity = true)]
|
|
public int ID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? CANSEND { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string COMPANYID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string COMPANYNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DCARRIER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string FILENAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string MARKS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string SENDCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string SHOWNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string TYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string USERCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string USERID { get; set; }
|
|
|
|
}
|
|
|
|
}
|