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.7 KiB
C#
60 lines
1.7 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_apply_detail", DisableSyncStructure = true)]
|
|
public partial class OpApplyDetail {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsPrimary = true, IsNullable = false)]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(27,0)", IsPrimary = true)]
|
|
public decimal SerialNo { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CURRENCY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string GOODSCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GOODSMODEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(150)")]
|
|
public string GOODSNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? GOODSNUM { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GOODSSTANDARD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? PKGS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? PRICE { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string Remark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? TOTAL { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(Name = "WMSIN_GID", DbType = "varchar(100)")]
|
|
public string WMSINGID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string WMSNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|