23 lines
297 B
TypeScript
Raw Normal View History

2021-12-06 23:26:38 +08:00
export default class ApplicationRule {
/**
*/
createdDate: number;
/**
*/
updatedDate: number;
id: number;
/**
*/
name: string;
/**
*/
comment: string;
/**
json序列化后
*/
content: string;
2021-11-22 16:59:38 +08:00
}