1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JLHHJSvr.Com.Model
- {
- public abstract class BaseInterface
- {
- public int? printid { get; set; }
- public string itemname { get; set; }
- public string bj_pzname { get; set; }
- public string bj_namemx { get; set; }
- public int? bj_inputtype { get; set; }
- public string actual_size { get; set; }
- public int? erp_pzid { get; set; }
- public string erp_pzcode { get; set; }
- public string erp_pzname { get; set; }
- public string pzcode { get; set; }
- public string pzname { get; set; }
- }
- }
|