UNIVPLMDataIntegration/Web/src/api-services/models/verify-rule-item.ts

79 lines
1.7 KiB
TypeScript
Raw Normal View History

2024-08-28 11:37:37 +08:00
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
*
*
* @export
* @interface VerifyRuleItem
*/
export interface VerifyRuleItem {
/**
*
*
* @type {number}
* @memberof VerifyRuleItem
*/
key?: number;
/**
*
*
* @type {string}
* @memberof VerifyRuleItem
*/
type?: string | null;
/**
*
*
* @type {string}
* @memberof VerifyRuleItem
*/
message?: string | null;
/**
*
*
* @type {string}
* @memberof VerifyRuleItem
*/
min?: string | null;
/**
*
*
* @type {string}
* @memberof VerifyRuleItem
*/
max?: string | null;
/**
*
*
* @type {string}
* @memberof VerifyRuleItem
*/
pattern?: string | null;
/**
* ()
*
* @type {string}
* @memberof VerifyRuleItem
*/
dataType?: string | null;
}