Compare commits
No commits in common. "ff1e60fc7715d834843f5d194f04bf5fda4ea77e" and "e07a1fdc4c6ba9fafdefce48f94ebc3218d96bd4" have entirely different histories.
ff1e60fc77
...
e07a1fdc4c
|
|
@ -1,18 +0,0 @@
|
|||
# Generated by Django 3.2.12 on 2025-11-25 08:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('srm', '0009_auto_20251125_1616'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='paperrecord',
|
||||
name='cor_author',
|
||||
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='通讯作者'),
|
||||
),
|
||||
]
|
||||
|
|
@ -95,7 +95,7 @@ class PaperRecord(CommonADModel):
|
|||
pa_type = models.CharField('论文类型', max_length=50, choices=PAPER_TYPE_CHOICES, default='invention')
|
||||
organization = models.CharField(max_length=100, verbose_name="申请部门")
|
||||
author = models.CharField(max_length=100, verbose_name="作者")
|
||||
cor_author = models.CharField(max_length=100, null=True, blank=True, verbose_name="通讯作者")
|
||||
cor_author = models.CharField(max_length=100, verbose_name="通讯作者")
|
||||
affiliated_platforms = models.CharField(max_length=255, blank=True, verbose_name="归属平台")
|
||||
affiliated_projects = models.CharField(max_length=255, blank=True, verbose_name="归属项目")
|
||||
accept_date = models.DateField(null=True, blank=True, verbose_name="接受日期")
|
||||
|
|
|
|||
Loading…
Reference in New Issue