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.

84 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(DisableSyncStructure = true)]
public partial class CodeGoodsInvs {
[JsonProperty, Column(StringLength = 128, IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string CompId { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string CompName { get; set; }
[JsonProperty]
public DateTime CreateTime { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string CreateUser { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string DEFCURR { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string DEFREMARK { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string DESCRIP { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string GOODCODE { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string GOODNAME { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string GoodsTypeGID { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string ISDEF { get; set; }
[JsonProperty]
public bool? ISSTOP { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string ISTAXPRICE { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string ISUSEPREF { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string SPEC { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string TAXCLASS { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string TAXCLASSNAME { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string TAXNO { get; set; }
[JsonProperty, Column(DbType = "decimal(18,2)")]
public decimal? TAXRATE { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string UNIT { get; set; }
[JsonProperty, Column(StringLength = -2)]
public string ZTAXTYPE { get; set; }
}
}