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.
48 lines
1.3 KiB
C#
48 lines
1.3 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 = "v_info_shipper", DisableSyncStructure = true)]
|
|
public partial class VInfoShipper {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(41)")]
|
|
public string CodeAndName { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "codename", DbType = "varchar(20)")]
|
|
public string Codename { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1024)")]
|
|
public string DELIVERADDRESS { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? ISPUBLIC { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1024)")]
|
|
public string LOADADDRESS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string SERVICECONTRACTNO { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "shipperdetail", DbType = "varchar(600)")]
|
|
public string Shipperdetail { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "shipperID", DbType = "varchar(20)", IsNullable = false)]
|
|
public string ShipperID { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "shippertype")]
|
|
public int? Shippertype { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SHORTNAME { get; set; }
|
|
|
|
}
|
|
|
|
}
|