12345678910111213141516171819 |
- using JLHHJSvr.Com.Model;
- using LJLib.DAL.SQL;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace JLHHJSvr.Com.Model
- {
- [PK(new[] { "pzid" })]
- public sealed class erp_configure_code
- {
- public int? pzid { get; set; }
- public int? inputtype { get; set; }
- public string pzcode { get; set; }
- public int? typeid { get; set; }
- public string name { get; set; }
- }
- }
|