1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using LJLib.DAL.SQL;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JLHHJSvr.Com.Model
- {
- [PK(new[] { "softbed_id,printid" })]
- public class u_softbed_mx
- {
- public int softbed_id { get; set; }
- public int printid { get; set; }
- public int pzid { get; set; }
- public int pz_pringid { get; set; }
- public int mtrlid { get; set; }
- public string mtrlname { get; set; }
- public string mtrlcode { get; set; }
- public string mtrlmode { get; set; }
- public string unit { get; set; }
- public byte has_type { get; set; }
- public byte allow_edit { get; set; }
- public decimal cutting_length { get; set; }
- public decimal cutting_width { get; set; }
- public decimal cutting_qty { get; set; }
- public decimal useqty { get; set; }
- public string use_formula { get; set; }
- public string use_formula_str { get; set; }
- public decimal actual_useqty { get; set; }
- public decimal loss_rate { get; set; }
- public decimal price { get; set; }
- public string price_formula { get; set; }
- public string price_formula_str { get; set; }
- public decimal cost_price { get; set; }
- public decimal cost_amt { get; set; }
- #region 辅助
- public string pzname { get; set; }
- public string pzmxname { get; set; }
- #endregion
- }
- }
|