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.
81 lines
2.2 KiB
C#
81 lines
2.2 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_ctn_outin", DisableSyncStructure = true)]
|
|
public partial class OpCtnOutin {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string AUDITBY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string AUDITRESULT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string AUDITSTATUS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "date")]
|
|
public DateTime? AUDITTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "date")]
|
|
public DateTime? BSDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "date")]
|
|
public DateTime? BUYTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CNSOURCE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(12)")]
|
|
public string CNTRNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string CNTROWNER { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? CTNTYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string INPUTBY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "date")]
|
|
public DateTime? INPUTTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string Remarks { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "RENT_BEGINTIME", DbType = "date")]
|
|
public DateTime? RENTBEGINTIME { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "RENT_ENDTIME", DbType = "date")]
|
|
public DateTime? RENTENDTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string RENTDAY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string SELLBY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "date")]
|
|
public DateTime? SELLTIME { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? STATUS { get; set; }
|
|
|
|
}
|
|
|
|
}
|