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.

75 lines
2.0 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 = "wms_fee", DisableSyncStructure = true)]
public partial class WmsFee {
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? ACREAGE { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? APFEE { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(100)")]
public string AREANAME { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? ARFEE { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(20)")]
public string CLIENTNAME { get; set; }
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; }
[JsonProperty]
public int? FEEMONTH { get; set; }
[JsonProperty]
public int? FEEYEAR { get; set; }
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
[JsonProperty]
public bool? ISLOCK { get; set; } = false;
[JsonProperty]
public DateTime? LOCKTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string LOCKUSER { get; set; }
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? MODIFIEDTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string MODIFIEDUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(1024)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string STORAGENAME { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string UNIT { get; set; } = "";
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? UNITPRICE { get; set; } = 0M;
}
}