serial-pattern.ts 576 B

1234567891011121314151617181920
  1. import { Page } from './page';
  2. /**
  3. * @fileoverview 编号模式实体类
  4. * 无依赖项
  5. * @author 冯海夫
  6. * Copyright 2019 上海翠颠信息科技有限公司. All Rights Reserved.
  7. */
  8. export class SerialPattern extends Page{
  9. id?:string;
  10. tableName:string; // 表名
  11. fieldName:string; // 字段名
  12. serialPattern:string;// 编号模式
  13. description?:string; // 描述
  14. createBy?:string; // 创建人
  15. createTime?:string; // 创建时间
  16. updateBy?:string; // 更新人
  17. updateTime?:string; // 更新时间
  18. pkOrg?:string;
  19. }