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.

36 lines
1.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 = "proc_getgoodsrksl", DisableSyncStructure = true)]
public partial class ProcGetgoodsrksl {
[JsonProperty, Column(Name = "@clientname", DbType = "varchar(20)", IsNullable = false)]
public string Clientname { get; set; }
[JsonProperty, Column(Name = "@RETURN_VALUE", DbType = "varchar(100)", IsIdentity = true, IsNullable = false)]
public string RETURNVALUE { get; set; }
[JsonProperty, Column(Name = "@strAssociatedno", DbType = "varchar(100)", IsNullable = false)]
public string StrAssociatedno { get; set; }
[JsonProperty, Column(Name = "@strBlno", DbType = "varchar(30)", IsNullable = false)]
public string StrBlno { get; set; }
[JsonProperty, Column(Name = "@strGid", DbType = "varchar(100)", IsNullable = false)]
public string StrGid { get; set; }
[JsonProperty, Column(Name = "@strGOODSRKSL", DbType = "numeric(18,4)")]
public decimal StrGOODSRKSL { get; set; }
}
}